Hello,
I can't seem to write to a mysql-table with php.
The next line of code should do the work, yet does not.
$write_statement = "INSERT INTO cartdata (cid, cdesc) VALUES ($cartidnum, $cartdesc)";
After ofcourse succesfully connecting to this database.
first field = int, second = varchar. variables are for instance 1,"computer"
Though when i manually enter some data into the table, the script will read everything and display it correctly.
Thankx in advance
FiSh