Re: [PHP-DB] javascript and php

2005-02-08 Thread Martin Norland
Perry, Matthew (Fire Marshal's Office) wrote: Hello all, I am having difficulties working with a JavaScript menu that should load on each page of my intranet site. [snip] hint - you're already on the wrong list. Read on. Here is a brief background of the problem: [snip] 4) I am using a JavaS

RE: [PHP-DB] Javascript and PHP

2001-03-14 Thread Rick Emery
Assume in HTML file is: http://my_site.com/do_form.php3"> Then, in do_form.php3: $text1 refers to the name of the field in the HTML form. This convention applies to all fields in the form, including checkboxes, radio buttons, submit buttons, etc. -Original Message- From: vivek

Re: [PHP-DB] Javascript and PHP

2001-03-14 Thread Joe Brown
Well, No and Yes. If the form is posted, whichever page that it was posted too will have $HTTP_POST_VARS["text1"] set to whatever was in the textbox. $text1 may also be a global variable, depending on your php.ini settings for register_globals and also variable_order. It took me a while to feel