[PHP-DB] _POST, _GET, _REQUEST not working

2004-12-20 Thread Warren
Hello, I am running PHP 4.39 as a CGI under Tomcat 5.025, Linux 2.4.20-31.9. Configure = './configure' '--with-java=/usr/java/j2sdk1.4.2_04' '--with-servlet=/home/www/jakarta-tomcat-5.0.25' '--with-mysql' I cannot get the _GET function or _REQUEST functions to pick up values from a form generati

[PHP-DB] _POST, _GET, _REQUEST not working

2004-12-21 Thread Warren
] => var1=334343 ) Very puzzling. Anyone else? -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: December 20, 2004 5:53 PM To: Keane, Warren A FIN:EX Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] _POST, _GET, _REQUEST not working Warren wrote: > Hello, >

[PHP-DB] RE: [PHP] Selecting between using letters

2003-12-29 Thread Vail, Warren
How about the following; SELECT DISTINCT left( name, 1 ) AS idx, count( * ) FROM users GROUP BY idx produces a count of the names found for each letter, then you can make decisions about your range of letters, like a max of 250 between letters, or some such number. Warren Vail -Original

[PHP-DB] sessions

2004-12-09 Thread Warren Mason
rname" ); session_register( "session_level" ); $session_username = "$username"; $session_level = "$account_level"; The resulting session is session_username|N;session_level|i:0; $username is set to warren and $account_level is set to 255. Any hel

Re: [PHP-DB] sessions

2004-12-09 Thread Warren Mason
Thanks to everyone that replied. All working great now thanks. Warren >>> Jochem Maas <[EMAIL PROTECTED]> 10/12/2004 2:47:28 pm >>> try using the $_SESSION superglobal var (google is your friend if its new to you.) no need to register (still need to do session

[PHP-DB] php start-stop howto?

2002-09-12 Thread Warren Massengill
re script in an executable file and it doesn't like that either. What do I do next? Thanks, Warren _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx -- PHP Databas

Re: [PHP-DB] php start-stop howto?

2002-09-12 Thread Warren Massengill
Hay! It worked. A minor miracle... Thanks >From: Adam Williams <[EMAIL PROTECTED]> >To: Warren Massengill <[EMAIL PROTECTED]> >CC: <[EMAIL PROTECTED]> >Subject: Re: [PHP-DB] php start-stop howto? >Date: Thu, 12 Sep 2002 13:19:03 -0500 (CDT) > >look in

[PHP-DB] Form response

2002-09-19 Thread Warren Massengill
gured for PostfreSQL. If I survive this problem, that one is on the horizon. Does anyone have a generic list of things to do after an RPM installation of RedHat Linux 7.2 in order to use PHP with PostgreSQL? Thanks, Warren _ Send

RE: [PHP-DB] Form response

2002-09-19 Thread Warren Massengill
Try $_POST['field_1'] instead of $field_1 ---John Holmes... I tried this with two different versions of reaction.php. Still displays only the source code. Thanks, Warren A S

Re: [PHP-DB] Form response

2002-09-20 Thread Warren Massengill
using the browser in Linux. John Holmes... >From: "Cornelia Boenigk" <[EMAIL PROTECTED]> >Reply-To: "Cornelia Boenigk" <[EMAIL PROTECTED]> >To: "Warren Massengill" <[EMAIL PROTECTED]> >Subject: Re: [PHP-DB] Form response >Date:

[PHP-DB] RE: [PHP-WIN] Re: Need Help in setting up a server

2010-06-29 Thread Warren Vail
may see the "public IP" for that machine, which can be used for linking to your server, but is not guaranteed to stay with that machine depending on powering up and down of your systems, and your ISP's procedures for assigning IP's. Hope this helps, Warren Vail Vail S

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
Original Message- From: Ford, Mike [mailto:[EMAIL PROTECTED] Sent: December 22, 2004 4:16 AM To: Keane, Warren A FIN:EX; php-db@lists.php.net Subject: RE: [PHP-DB] _POST, _GET, _REQUEST not working To view the terms under which this email is distributed, please go to http://disclaimer.leed

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
( ) [_ENV] => Array ( ) [HTTP_POST_FILES] => Array ( ) [_FILES] => Array ( ) [_REQUEST] => Array ( ) [GLOBALS] => Array *RECURSION* ) Array ( ) Array ( ) -Original Message-

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
Jochem wrote: >> Thanks but this would be impractical for the real application. I need to >> gather >> customer data and write it to the database. I would likely use POST. I >> couldn't >> get POST to work either but am using _GET right now since I can at least >> see the query string value. >