On Fri, 29 Oct 2004 15:22:29 +0530, suma parakala <sumaparkala@xxxxxxxxxxx> wrote: > I developed a html form in which I have text box and combo box. Now my > problem is I have to pass the values of this page to another page. How can i > pass the values/variables to next page using href > Kindly help me You have to submit the form in some way, GET, POST, or a perhaps a javascript invocation of either. Once the form is submitted to the next page, the variables will be available via the $_GET or $_POST arrays. You can view these arrays with print_r(). This is the theory, but if you post your actual code, people will most likely help you debug it. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php