[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

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

2004-12-21 Thread Warren
- 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, I am running PHP 4.39 as a CGI under Tomcat 5.025, Linux 2.4.20-31.9. Configure

[PHP-DB] php start-stop howto?

2002-09-12 Thread Warren Massengill
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 Database Mailing List (http

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 /etc/httpd/conf/httpd.conf when you restart apache

[PHP-DB] Form response

2002-09-19 Thread Warren Massengill
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 and receive Hotmail on your mobile

[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
); 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 help would be greatly appreciated as I have gone

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_start() though) just do

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

2010-06-29 Thread Warren Vail
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 Systems Technology -Original Message- From

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

2004-12-22 Thread Keane, Warren A FIN:EX
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.leedsmet.ac.uk

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

2004-12-22 Thread Keane, Warren A FIN:EX
To: Keane, Warren A FIN:EX Cc: php-db@lists.php.net Subject: Re: [PHP-DB] _POST, _GET, _REQUEST not working Warren wrote: Thanks for your response Jochem. cheers. I realize this is not a DB specific question but this exercise is to get my mysql routines working. I did remove the declaration

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. ok - I