RE: [PHP] autocomplete a field

2005-06-16 Thread Kim Madsen
> -Original Message- > From: xfedex [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 04, 2005 4:57 AM > To: php-general@lists.php.net > Subject: Re: [PHP] autocomplete a field > > Hi, > > Anyone know if theres a way to disable this feature for user using old

Re: [PHP] autocomplete a field

2005-06-04 Thread Burhan Khalid
xfedex wrote: Hi, Anyone know if theres a way to disable this feature for user using old browsers or not suporting JS/XML? Look up -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] autocomplete a field

2005-06-04 Thread Rory Browne
On 6/4/05, xfedex <[EMAIL PROTECTED]> wrote: > Hi, > > Anyone know if theres a way to disable this feature for user using old > browsers or not suporting JS/XML? Put your JS Code in html comments, like as follows... > > Thanks, > pancarne. > > -- PHP General

Re: [PHP] autocomplete a field

2005-06-03 Thread xfedex
Hi, Anyone know if theres a way to disable this feature for user using old browsers or not suporting JS/XML? Thanks, pancarne.

Re: [PHP] autocomplete a field

2005-06-03 Thread Joe Harman
Hi Philip! congrats on being new to PHP... you'll find that PHP is very robust 'Server Side Scripting Language'... you'll probably want to subscribe to the javascript mailing list for your javascript questions... the people here want you to keep the questions on this mailing list restricted to PHP

Re: [PHP] autocomplete a field

2005-06-03 Thread Philip Hallstrom
Hi, I am new to php and I would like to find out if there's some kind of a function that would autocomplete the word/value when the user is trying to fill out a field in a form. Thank you. This is a JavaScript issue, but that said... http://www.pjkh.com/wiki/field_completion Toot! Toot! ;-)

RE: [PHP] autocomplete a field

2005-06-03 Thread Jim Moseby
> > Hi, I am new to php and I would like to find out if there's > some kind of > a function that would autocomplete the word/value when the user is > trying to fill out a field in a form. Thank you. > PHP is server side, not client side, where the form is. You would need to use javascript for

Re: [PHP] autocomplete a field

2005-06-03 Thread Mikey
Olga Urban wrote: Hi, I am new to php and I would like to find out if there's some kind of a function that would autocomplete the word/value when the user is trying to fill out a field in a form. Thank you. Olga That is a client side scripting issue... try javascript... HTH, Mikey -- PH

RE: [PHP] autocomplete a field

2005-06-03 Thread Jay Blanchard
[snip] Hi, I am new to php and I would like to find out if there's some kind of a function that would autocomplete the word/value when the user is trying to fill out a field in a form. Thank you. [/snip] Since PHP is server side it will not do this. Look into JavaScript. -- PHP General Mailing Li