Hi - how do I change this:
<input type=hidden name="userID" value="' . $row["userID"] . '">
to this format within an $form=?
$form.="<input type=\"text\" name=\"userID\" value=\"' . $row["userID"] . '\">";
I get a PHP parse error in command prompt php.exe that says unexpected '"', expecting T_string or T_variable or T_numstring
thanks