Sophie Mattoug schrieb:
<input type="text" name="name" value="<?=$value?>">

[EMAIL PROTECTED] wrote:

Hi all,
I am creating a user form whereby I will do an "INSERT" , "SELECT" , "UPDATE" and of course "DELETE" for the form. Right now I am trying to create a form whereby when user choose to update their info, they wil be directed to a form where the fields region are EDITABLE , before that, the fields should contain their "old" info...so can i know how should i go about creating this kinda "Editable" fields using php scripting ???Fields should contain old info retrieved from the DB.....Anyone have any idea??


Realli need some help here. Thanks in advance =)

Irin.

... or the long version, if you work with other namespaces or your webserver doesn't support these short tags:


<input type="text" name="name" value="<?php echo $value; ?>">

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to