Page 1 of 1

possible to populate combobox in PHP without reloading page?

Posted: Thu Jun 02, 2005 11:51 pm
by jeephp
Hello!

is it possible to populate the comboxbox in PHP without reloading the

entire page?

we have three combo boxes the values of second combobox is populated from

database according to selected item in first combobox but I don't need to

regresh entire page !!

Thanks!

Posted: Fri Jun 03, 2005 12:17 am
by Burrito
using php it's not possible as the information must be gathered from the server as it is a server side language.

you could use javascript to populate your second drop down, or xmlhttp (still javascript, but fetches new info from the server).