Dear ajax expert,
http://www.w3schools.com/php/php_ajax_php.asp
Refer to the link, using the sample, I'm able to use php ajax to populate 1 text box which I've already pre-define (not using "echo '<input type='text'..") -- the info came from a table
e.g.
Search: [jo ]
Name: [John doe]
sql
---
select name from customer where name like '%jo%';
Question
========
How do I populating 3 text boxes?
e.g.
Search: [jo ]
Name: [John doe]
Address: [123 city state postcode]
Tel: [012-3456-7890]
sql
---
select name, address, telno from customer where like '%jo%';
I've been googling this solution, but no solution found
Please Help!
Regards