Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Variables from URL $_GET
well
insert into <table> values (, <val>, <val>);
is an invalid sql. Following is a valid sql: insert into <table> values (null, <val>, <val>);
Although I do not know PHP, I can tell you are not using bind variables. Had you been using them, you would not have had this issue and your app would be much more scalable.
Anurag Received on Wed Apr 05 2006 - 14:52:24 CDT