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

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 =

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

2013-02-10 Thread Jim Giner
On 2/9/2013 10:51 PM, Ethan Rosenberg, PhD wrote: I know that this might be an Ajax/Javascript question. Hopefully you can help. I do not know of any other source for good info. I would like to be able to click on one field in a table, and retrieve the data in another field. Here is the