imran shafiq wrote: > Hi All Hi Imran:
> 1) How to calculate two combo box values and > display > it without submiting the form in PHP can't be done. php runs on the server. if you want it to be done without a page re-load, you will need to use javascript, or make a flash movie of some sort. > 2) In a main drop down list to options A & B If A > is > selected another drop down list is appear > containing > all selection starting with alphabet "A" and If B > is > selected drop down list of B appear rather than A > containing all selection starting with alphabet "B" If you want this to also not do a post/reload of the form, it too will have to be done in javascript. Basically, you need to create a 2-dimensional array. > 3)A drop down list containing links of other PHP > files > If I select Abc control tranfer to abc.php without > submiting form. For example > ........ > City: > <select name="City"> > <option selected value=''>Select option</option> > <option value="1">Add item</option></select> > ........ > Here If I select "Add item" a new window apear > running > Add.html when I add the item and submit it and > control > tranfer back to the original file. once again, this is javascript. window.open() command to pop add.html, and when submitted, window.close() to return you to the main window. ------------------------ Yahoo! Groups Sponsor --------------------~--> <font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12htqok4i/M=362335.6886445.7839731.1510227/D=groups/S=1705005703:TM/Y=YAHOO/EXP=1123615097/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/">In low income neighborhoods, 84% do not own computers. At Network for Good, help bridge the Digital Divide!</a>.</font> --------------------------------------------------------------------~-> Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
