Can somebody help me to get this code to work please.
Step by step:
Step 1. I show a form to the user. They enter information to use to query the database. Press 'Find' this then posts the form variables to the next script.
Step 2. The next script then uses these posted values for the WHERE clause of a SELECT statement. The select statement returns one row, a uinque match. Then I want to put this information into a table with textfields in another form(script) and show that form in the browser.
if($row=mysql_fetch_object($resultSet))
{
echo "<input type=\"text\" name=\"ID\" value=\"$row['taskID']\">";
//etc fields
//show completed_form.php This already exists and has a table with textfields in it that need populating by this script.
}
- End result - automatically completed from showing in browser