Re: [PHP-DB] Re: AJAX/Javascript??

2013-02-11 Thread Jim Giner
On 2/11/2013 10:08 AM, Michael Oki wrote: Create a form and add a submit button that will run a php file. The SQL query in the php file will have something like "SELECT custName FROM table WHERE lname='$lname'; This will come after you have retrieved the data from a form like this $lname = $_POST

Re: [PHP-DB] Re: AJAX/Javascript??

2013-02-11 Thread Michael Oki
Create a form and add a submit button that will run a php file. The SQL query in the php file will have something like "SELECT custName FROM table WHERE lname='$lname'; This will come after you have retrieved the data from a form like this $lname = $_POST['lname']; On 10 February 2013 15:45, Jim