hey
i wanna to have to fields to write in and then update to the database
this code let you write in fields to update the database and also show the current value
[php]
echo ‘Personlighet:
’;
echo ‘’;
[/php]
[php]$Personlighet = mysql_real_escape_string($_POST[‘Personlighet’]);[/php]
and this one update the database
[php]mysql_query(“UPDATE members
SET Personlighet
= '”. $Personlighet ."’, WHERE id
= ‘". $_SESSION[‘id’] ."’") or die(mysql_error());
[/php]
i want to do the same but intead of using “text input” , i wanna use
how do i do it while using
have not idea how to get it to work ?
[code]echo 'cm:
thanks