I am trying to insert values into a table using odbc, i have succesfully connected to the data base and when i send the SQL insert command everething seems to be allright, $result is a proper identifier, everything is just fine exept that the table remains without any change, nothing happens and i dont know why, i have tryed with '$col', $col and nothing happens. Here is the code:
$result = odbc_exec($db,"INSERT INTO TABLE (COL1, COL2, COL3) VALUES ('$col1', '$col2', '$col3')");
Pls Help me if you can.
Otto