You can do form elements like this:
<INPUT name=somevalue type=text value="<?php echo $somevalue ?>">
So if your php script had a value of "foo" in the variable $somevalue, then when that input field was displayed in the form, "foo" would already be inside it.
Originally posted by adipat
Hi, can anybody help me?
I have a search form with different fields on it. i want to bilud a search function such that when i give in a search criteria in the search field the result must be shown in the corresponding form fields. i don't want to display it on a table but in the form so i can edit the corresponding fields and save the form.
Thanks for all replyes, Adrien