Re: [PHP] Re: User Logon Procedure Fails

2004-07-05 Thread Jordi Canals
Curt Zirzow wrote: $userid = (int) $_POST['TXT_UserID']; $sql = "... WHERE UserID = $userid"; Seing that I have a question around. Most cases I validate the $userid by using the function inval() in that way: $userid = inval($_POST['TXT_UserID']; $sql = "... WHERE UserID = $userid"; I

Re: [PHP] Re: User Logon Procedure Fails

2004-07-05 Thread Curt Zirzow
* Thus wrote Torsten Roehr: > "Harlequin" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Another day another problem. This time it appears that users are able to > > enter their details but I get a query execution error with the following > > section of code: > > > > /* Verify Lo

[PHP] Re: User Logon Procedure Fails

2004-07-04 Thread Torsten Roehr
"Harlequin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Another day another problem. This time it appears that users are able to > enter their details but I get a query execution error with the following > section of code: > > /* Verify Login */ > $sql = "SELECT UserFirstName,Us