Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Variables from URL $_GET

Re: Variables from URL $_GET

From: Anurag Varma <avoracle_at_gmail.com>
Date: 5 Apr 2006 12:52:24 -0700
Message-ID: <1144266744.832900.239980@g10g2000cwb.googlegroups.com>

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US