Afternoon Freaks,
I have been getting a weird INSERT query result. I put data into a table using the following query:
$cquery = "insert into performance2
(sourceId, column1, column2, column3, column4)
VALUES ('$lastSid', '$value1', '$value2', '$value3', '$value4')";
mysql_query($cquery, $cxn);
The table performance2 contains an id field (perfid) which is an auto-incremented, indexed, primary key.
When I run that query, everything works -- except that all the perfid rows are filled with "binary_file.dat". I've never seen this before, and I've tried googling the problem and still can't find out what's going on.
Anybody have any ideas? Thanks!