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 PROTECTE

Re: [PHP] Day of Week??

2001-03-14 Thread Tim McGuire
from manual at www.php.net: $today = getdate(); $weekday = $today[weekday]; echo $weekday; if it is another date $thedate = getdate(mktime (0,0,0,(0,0,0,1,1,1998)); $weekday = $t

Re: [PHP] Day of Week??

2001-03-14 Thread Tim McGuire
(0,0,0,1,1,1998)); $weekday = $thedate[weekday]; echo $weekday; Tim >>> "Tim McGuire" <[EMAIL PROTECTED]> 03/14/01 08:10AM >>> from manual at www.php.net: $today = getdate();

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 to function equal keyboard key T

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;i etc. It works well >>> "Diego Fulgueira" <[EMAIL PROTECTED]> 05/02/01 09:14AM >>> After several tries, I am convinced there is no way to do it. I went around the problem by using dinamic field names (var1, var2, var3, et

[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, e-

Re: [PHP] About php

2001-03-28 Thread Tim McGuire
Here is a post from a few months ago that has an idea about your question: Tim __ Quick answer: Nothing, if it works. Which browser supports it? Anthony -Original Message- From: Ignacio Vazquez-Abrams [mailto:[EMAIL PROTECTED]

[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 i

[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 i

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 Mc

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

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