Re: [PHP] basic php question...

2008-11-06 Thread Amisha_Sharma
Hi What do you want to do on the another page? you can also place a back link on that page to go back to previous page http://www.senpai-it.com/dedicated_servers.php Senpai IT Solutions Dedicated Server at low cost bruce-60 wrote: hi guys... i've got a button that i want to select,

Re: [PHP] basic php question...

2008-11-06 Thread Lupus Michaelis
Thodoris a écrit : Do these people really exist? I though that their extinction happened the same with the dinosaurs. Like Ashley said it, they are some specific situation where you can't. But, Javascript can become a secrity issue, and it must be deactivable. Some years ago, they was

Re: [PHP] basic php question...

2008-11-06 Thread Richard Heyes
* some proxy servers (e.g. at work) strip out some scripts How on earth do you use Gmail? :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] basic php question... [compliance]

2008-11-06 Thread tedd
At 6:53 PM +0200 11/5/08, Thodoris wrote: Thank you oh mighty and good God that I don't live in America!! How do you manage all these strange things you guys ? Nothing strange about it -- it's just the evolution of technology. Things are improving for everyone. Certainly that does not mean

Re: [PHP] basic php question...

2008-11-06 Thread Thodoris
On Wed, 2008-11-05 at 18:48 +0200, Thodoris wrote: Richard Heyes a écrit : users who browse without Javascript enabled, Heretics! No, paranoid :D Do these people really exist? I though that their extinction happened the same with the dinosaurs.

Re: [PHP] basic php question... [compliance]

2008-11-06 Thread Thodoris
At 6:53 PM +0200 11/5/08, Thodoris wrote: Thank you oh mighty and good God that I don't live in America!! How do you manage all these strange things you guys ? Nothing strange about it -- it's just the evolution of technology. Evolution?? Really ? Disabling js? Things are improving for

Re: [PHP] basic php question...

2008-11-06 Thread Ashley Sheridan
On Thu, 2008-11-06 at 14:28 +0200, Thodoris wrote: On Wed, 2008-11-05 at 18:48 +0200, Thodoris wrote: Richard Heyes a écrit : users who browse without Javascript enabled, Heretics! No, paranoid :D Do

Re: [PHP] basic php question...

2008-11-05 Thread Ashley Sheridan
On Tue, 2008-11-04 at 23:20 -0800, Yeti wrote: Do disability browsers support JavaScript? Not all of it even if they do at all. Face it, how can someone who cannot see, or somebody without the use of their arms, use a mouse to navigate and trigger hover, drag and other mouse-orientated actions.

RE: [PHP] basic php question... [compliance]

2008-11-05 Thread tedd
At 2:34 PM -0600 11/4/08, Boyd, Todd M. wrote: -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Also remember, all US based sites have to be in compliance with ADA as well, otherwise you'll spend a lot of time re-writing your stuff if it doesn't work for someone to use a

Re: [PHP] basic php question...

2008-11-05 Thread Thodoris
Richard Heyes a écrit : users who browse without Javascript enabled, Heretics! No, paranoid :D Do these people really exist? I though that their extinction happened the same with the dinosaurs. -- Thodoris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] basic php question... [compliance]

2008-11-05 Thread Thodoris
At 2:34 PM -0600 11/4/08, Boyd, Todd M. wrote: -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Also remember, all US based sites have to be in compliance with ADA as well, otherwise you'll spend a lot of time re-writing your stuff if it doesn't work for someone to use

Re: [PHP] basic php question... [compliance]

2008-11-05 Thread Daniel P. Brown
On Wed, Nov 5, 2008 at 11:53 AM, Thodoris [EMAIL PROTECTED] wrote: How do you manage all these strange things you guys ? We sit down, shut up, and do what Big Brother tells us to do. Oceania err, Pennslvania is a beautiful state in which to live. -- /Daniel P. Brown

Re: [PHP] basic php question...

2008-11-05 Thread Ashley Sheridan
On Wed, 2008-11-05 at 18:48 +0200, Thodoris wrote: Richard Heyes a écrit : users who browse without Javascript enabled, Heretics! No, paranoid :D Do these people really exist? I though that their extinction happened the same with the dinosaurs. -- Thodoris Lots of

[PHP] basic php question...

2008-11-04 Thread bruce
hi guys... i've got a button that i want to select, and i want the app to process some logic, and then return the user to the page. my question is how?? something like base page: a href=foo.phpbutton link/a foo.php -process logic -return the user to the base page, with the same querystring

Re: [PHP] basic php question...

2008-11-04 Thread Micah Gersten
Is anything changing on the page? If not, AJAX might be the way to go, http://xajaxproject.org Otherwise, pass the parameters you want to foo.php and have it redirect to the proper page with the proper arguments. Another alternative, is to store the parameters in the session and pass them from

RE: [PHP] basic php question...

2008-11-04 Thread bruce
and what's the best way to do the redirect sample code would be cool! -Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 11:33 AM To: bruce Cc: php-general@lists.php.net Subject: Re: [PHP] basic php question... Is anything changing

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 1:33 PM To: bruce Cc: php-general@lists.php.net Subject: Re: [PHP] basic php question... Is anything changing on the page? If not, AJAX might be the way to go, http

Re: [PHP] basic php question...

2008-11-04 Thread Kaleb Pomeroy
[mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 11:33 AM To: bruce Cc: php-general@lists.php.net Subject: Re: [PHP] basic php question... Is anything changing on the page? If not, AJAX might be the way to go, http://xajaxproject.org Otherwise, pass the parameters you want to foo.php

Re: [PHP] basic php question...

2008-11-04 Thread Ashley Sheridan
On Tue, 2008-11-04 at 11:27 -0800, bruce wrote: hi guys... i've got a button that i want to select, and i want the app to process some logic, and then return the user to the page. my question is how?? something like base page: a href=foo.phpbutton link/a foo.php -process logic

Re: [PHP] basic php question...

2008-11-04 Thread Dotan Cohen
2008/11/4 bruce [EMAIL PROTECTED]: and what's the best way to do the redirect Header redirects are my preferred method, because of the Back button on the browser. sample code would be cool! It is available at php.net/manual -- Dotan Cohen http://what-is-what.com

Re: [PHP] basic php question...

2008-11-04 Thread Dotan Cohen
2008/11/4 Boyd, Todd M. [EMAIL PROTECTED]: If you're going to go with AJAX (involving Javascript), you may as well just use Javascript: ?php # processing goes here ? script type=text/javascript history.go(-1); /script That will not work for users who browse without

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
hi guys...foo i've got a button that i want to select, and i want the app to process some logic, and then return the user to the page. my question is how?? something like base page: a href=foo.phpbutton link/a foo.php -process logic -return the user to the base

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 1:49 PM To: Boyd, Todd M. Cc: php-general@lists.php.net Subject: Re: [PHP] basic php question... 2008/11/4 Boyd, Todd M. [EMAIL PROTECTED]: If you're going to go with AJAX (involving

Re: [PHP] basic php question...

2008-11-04 Thread Richard Heyes
users who browse without Javascript enabled, Heretics! -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:28 PM To: Richard Heyes Cc: Dotan Cohen; php-general@lists.php.net; Boyd, Todd M. Subject: Re: [PHP] basic php question... Richard Heyes [EMAIL PROTECTED] wrote: users who browse

Re: [PHP] basic php question...

2008-11-04 Thread Dotan Cohen
2008/11/4 Wolf [EMAIL PROTECTED]: Also remember, all US based sites have to be in compliance with ADA as well, otherwise you'll spend a lot of time re-writing your stuff if it doesn't work for someone to use a disabilities enabled browser to surf your site. Is there a compliance test? --

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:30 PM To: php-general@lists.php.net Subject: Re: [PHP] basic php question... Richard Heyes [EMAIL PROTECTED] wrote: users who browse without Javascript enabled, Heretics

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:34 PM To: Wolf Cc: php-general@lists.php.net Subject: Re: [PHP] basic php question... 2008/11/4 Wolf [EMAIL PROTECTED]: Also remember, all US based sites have to be in compliance

Re: [PHP] basic php question...

2008-11-04 Thread Jochem Maas
Boyd, Todd M. schreef: -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:30 PM To: php-general@lists.php.net Subject: Re: [PHP] basic php question... Richard Heyes [EMAIL PROTECTED] wrote: users who browse without Javascript enabled

Re: [PHP] basic php question...

2008-11-04 Thread Dotan Cohen
2008/11/4 Boyd, Todd M. [EMAIL PROTECTED]: All U.S.-based GOVERNMENT and GOVERNMENT-RELATED sites (i.e., funded, regulated, etc.) have to be in compliance. If I'm making a version of Simon Says using PHP at my own leisure and putting it up for my friends and others to play, or if I'm

RE: [PHP] basic php question...

2008-11-04 Thread Boyd, Todd M.
-Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:45 PM To: Boyd, Todd M. Cc: PHP General list Subject: Re: [PHP] basic php question... 2008/11/4 Boyd, Todd M. [EMAIL PROTECTED]: All U.S.-based GOVERNMENT and GOVERNMENT-RELATED

Re: [PHP] basic php question...

2008-11-04 Thread Dotan Cohen
2008/11/4 Boyd, Todd M. [EMAIL PROTECTED]: Is there a compliance test? There's a link at the bottom of this page for an automated test: http://pamil-visions.com/W3C-compliance.php Thanks! -- Dotan Cohen http://what-is-what.com http://gibberish.co.il

RE: [PHP] basic php question...

2008-11-04 Thread bruce
hi Kaleb looks like the header approach will work for my needs.. thanks -Original Message- From: Kaleb Pomeroy [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 11:46 AM To: bruce Cc: 'Micah Gersten'; php-general@lists.php.net Subject: Re: [PHP] basic php question

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
Richard Heyes [EMAIL PROTECTED] wrote: users who browse without Javascript enabled, Heretics! lynx works great! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic php question...

2008-11-04 Thread Wolf
Richard Heyes [EMAIL PROTECTED] wrote: users who browse without Javascript enabled, Heretics! Also remember, all US based sites have to be in compliance with ADA as well, otherwise you'll spend a lot of time re-writing your stuff if it doesn't work for someone to use a disabilities

RE: [PHP] basic php question...

2008-11-04 Thread Wolf
Boyd wrote: -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:30 PM To: php-general@lists.php.net Subject: Re: [PHP] basic php question... Richard Heyes [EMAIL PROTECTED] wrote: users who browse without Javascript

RE: [PHP] basic php question...

2008-11-04 Thread Ashley Sheridan
On Tue, 2008-11-04 at 16:15 -0500, Wolf wrote: Boyd wrote: -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2008 2:30 PM To: php-general@lists.php.net Subject: Re: [PHP] basic php question... Richard Heyes [EMAIL

Re: [PHP] basic php question...

2008-11-04 Thread Lupus Michaelis
Richard Heyes a écrit : users who browse without Javascript enabled, Heretics! No, paranoid :D -- Mickaël Wolff aka Lupus Michaelis http://lupusmic.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic php question...

2008-11-04 Thread Yeti
Do disability browsers support JavaScript? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] basic php question...

2008-11-04 Thread Larry Garfield
On Wednesday 05 November 2008 1:20:34 am Yeti wrote: Do disability browsers support JavaScript? This is not a PHP question, basic or otherwise. However, the answer to your question is some do, some don't to varying degrees, just to keep life interesting. Search engines, however, do not. So