Re: [PHP] Re: assign database result to iinput text box

2013-09-18 Thread ITN Network
"; //select a database to work with $selected = mysql_select_db("iccsimd",$dbhandle) or die("Could not select aerver"); //execute the SQL query and return records $result = mysql_fetch_assoc(mysql_query("SELECT invid, invdate, note, amount FROM invheader")); ?> Like Maciek mentioned, if this

[PHP] Re: assign database result to iinput text box

2013-09-18 Thread Maciek Sokolewicz
On 18-9-2013 7:33, iccsi wrote: I have following html code to show my input text box and php to connect server and select result from database server. I would like to know how I can I use php to assign the value to my input text. Your help and information is great appreciated, Regards, Hi iccs