urgent help

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
hbabu
Forum Newbie
Posts: 2
Joined: Sat Jan 24, 2004 6:10 am

urgent help

Post by hbabu »

I am working on MysQl Db with PHP at server side. Client side is Javascript.

I populate a drop down combo on the screen with certain values. Once a value is selected, I need to get details pertaining to the selected value from the database again. How do I do it. Matter is most urgent
malcolmboston
DevNet Resident
Posts: 1826
Joined: Tue Nov 18, 2003 1:09 pm
Location: Middlesbrough, UK

Post by malcolmboston »

for eg

value of selected 'menu item' -> malcolmboston

Code: Select all

mysql_query ="select * from table where something = $valueofbox
create an array

then print it back out to the screen

this will give you all of the information about the value in the box, in this case, malcolmboston
Post Reply