Re: [PHP] associative arrays in html forms and javascript

2001-08-08 Thread Tim McGuire
; So on yours I think it would be like this: document.formname[arraystuff[+inputfield+]].focus or body onload = 'document.formname[arraystuff[+inputfield+]].focus' Tim McGuire Minnesota The only time I ever run is when I light a roach bomb in my apartment --- Daniel James [EMAIL PROTECTED] wrote

Re: [PHP] Php Files on Browser

2001-06-26 Thread Tim McGuire
Hi Ted, There is an installer available for free that will painlessly install apache, php, and mysql on your windows system. Good tool for trying out stuff locally or hosting an intranet application on a windows box. PHPTriad available from www.phpgeek.com Can't praise it enough. Tim McGuire

[PHP] List of included file names.

2001-06-20 Thread Tim McGuire
Hi, I searched the archives for this. For debugging purposes, I want to see a list of the included files on a page in HTML comments. PHP_SELF and HTTP_SERVER_VARS[SCRIPT FILENAME] only returns the name + path of the file calling the included files. I want each included file to contribute

[PHP] list of included file names

2001-06-19 Thread Tim McGuire
Hi, I searched the archives for this. For debugging purposes, I want to see a list of the included files on a page in HTML comments. PHP_SELF and HTTP_SERVER_VARS[SCRIPT FILENAME] only returns the name + path of the file calling the included files. I want each included file to contribute

[PHP] Twin Cities PHP Users Group meeting

2001-05-07 Thread Tim McGuire
The next meeting of the Twin Cities PHP users group is coming: Wednesday, May 9 7:00 PM Downtown St. Paul Check www.tcphp.org for directions and minutes from previous meetings -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: [PHP] Forms with Field Arrays and JavaScript

2001-05-02 Thread Tim McGuire
For IE 5 and NN 4.7 at least, I made it work like this: for(var i = 0;inumrows;i++){ //alert(i); //alert(theform[changed[+i+]].value); if (theform[changed[+i+]].value == 'true') { //record is changed

Re: [PHP] TAB = ENTER ????

2001-03-14 Thread Tim McGuire
Check out http://developer.irt.org/script/471.htm it is a document titled "How can I simulate the tab key when the enter key is pressed?" Marcel Henrique Scandolara - Wide [EMAIL PROTECTED] 03/14/01 08:38AM Please, As I make to make keyboard key ENTER to function equal keyboard key TAB

Re: [PHP] Sorry! Help needed!

2001-01-23 Thread Tim McGuire
I think you are asking if you can use client side JavaScript to handle a form. www.irt.org has some good examples of this in their JavaScript FAQ section. Try http://developer.irt.org/script/form.htm#10.3 for "Interactions between forms in different frames or windows" Anna [EMAIL PROTECTED]