in reply to Re^2: mysql update table how toin thread mysql update table how to
That is the code poj gave me so I don't know?
Nonsense. poj wrote
my $sql = 'SELECT ID,DISABLED FROM EmployerJobs WHERE Username = ? AND UserPassword = ? AND Userid = ? AND Disabled <> ?'; [download]
which is valid SQL. Whereas you wrote
my $sql = 'SELECT ID,Disabled FROM EmployerJobs WHERE Username = ? AND Password = ? AND USERID = ? AND Disabled = <> ?'; [download]
which is not.