I'm having a problem using INSERT SQL-statements with PHP on IIS6.
INSERT statement don't work but SELECT's do.
When I run the exact same SQL statement using the SQL client directly to the database, it works like a charm.
This is the code:
$open = fbsql_connect("localhost", "Tore");
$sql="INSERT INTO leverantor (leverantorsnr,leverantorsnamn) VALUES (418,'Edstroms AB');";
$data = fbsql_db_query("Tore",$sql);
Any help would be greatly appreciated.
/Aron