[PHP] page expired message

2002-03-20 Thread Gonzalez, Zara E
Is there any way to avoid getting this message when I hit back on my browser "Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit y

RE: [PHP] Another Session Question..

2002-03-12 Thread Gonzalez, Zara E
On second look, perhaps it is working correctly. I wasn't incrementing my counter variable. Sorry to flood your mailboxes. Zara -Original Message- From: Gonzalez, Zara E Sent: Tuesday, March 12, 2002 3:47 PM To: 'Coggeshall, John'; '[EMAIL PROTECTED]' S

RE: [PHP] Another Session Question..

2002-03-12 Thread Gonzalez, Zara E
wouldn't work for me anyway. (http://www.php.net/manual/en/function.session-register.php) Zara -Original Message- From: Coggeshall, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 3:38 PM To: Gonzalez, Zara E Subject: RE: [PHP] Another Session Question.. If you are tr

[PHP] Another Session Question..

2002-03-12 Thread Gonzalez, Zara E
I asked a question the other day about turning $_REQUEST variables into $_SESSION variables...thanks, all who helped me with that... I have another question about assigning $_REQUEST variables to $_SESSION variables that I am hoping someone can help me out with Here is a snippit of code...

RE: [PHP] Re: registering $_REQUEST variables as session variables.

2002-03-11 Thread Gonzalez, Zara E
So because I'm a little dense, would that register the whole $_REQUEST array as a session variable? Or just 'from_form' ? Thanks, Zara -Original Message- From: Julio Nobrega Trabalhando [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 12:09 PM To: [EMAIL PROTECTED] Subject: [PHP

[PHP] registering $_REQUEST variables as session variables.

2002-03-11 Thread Gonzalez, Zara E
Hullo, I was just wondering if anyone knew an easy way to register all $_REQUEST variables as session variables. Or if there's not any easy way to do that, if there is an easier way than doing it this way for each variable: $a = $_REQUEST['a']; session_register("a"); $b = $_REQUEST['b']; sessio

RE: [PHP] magic_quotes_gpc

2002-02-26 Thread Gonzalez, Zara E
Bah. I should read posts carefully when I answer them. Ini_alter is only in php4. Whoops. Zara -Original Message- From: Gonzalez, Zara E Sent: Tuesday, February 26, 2002 11:29 AM To: 'Tim Thorburn'; [EMAIL PROTECTED] Subject: RE: [PHP] magic_quotes_gpc I don't kno

RE: [PHP] magic_quotes_gpc

2002-02-26 Thread Gonzalez, Zara E
I don't know if anyone has answered your question yet, but you should be able to use the ini_alter command. http://www.php.net/manual/en/function.ini-alter.php Zara -Original Message- From: Tim Thorburn [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 12:40 PM To: [EMAIL PROT

RE: [PHP] What Do You Think?

2002-02-15 Thread Gonzalez, Zara E
I'd love a site like this. Let's do it quick before I go off traveling in May (so I can find some great pubs to visit ;) Seriously though, I haven't done much with GD (nor do I have a great deal of freetime) but I'd be willing to help out as much as I could on this project if anyone is serious ab

RE: [PHP] Cheap, PHP, mySQL hosting!

2002-02-14 Thread Gonzalez, Zara E
I use http://www.phpwebhosting.com they're pretty good and cheap too. Zara -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 11:07 AM To: 'Thomas Edison Jr.'; [EMAIL PROTECTED] Subject: RE: [PHP] Cheap, PHP, mySQL hosting! http://www.nomo

RE: [PHP] Question: $_* etc or $HTTP_*_VARS etc

2002-01-25 Thread Gonzalez, Zara E
ables registered by the session module (no $_FILES) Ahh well. Now I know. Thanks. -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 1:11 PM To: Gonzalez, Zara E Cc: 'PHP-General' Subject: RE: [PHP] Question: $_* etc or $HTTP_*_

RE: [PHP] Question: $_* etc or $HTTP_*_VARS etc

2002-01-25 Thread Gonzalez, Zara E
but they aren't showing up there. Help is appreciated, Zara -Original Message----- From: Gonzalez, Zara E Sent: Friday, January 25, 2002 10:02 AM To: 'PHP-General' Subject: [PHP] Question: $_* etc or $HTTP_*_VARS etc I am going through some code that I wrote recently and try

[PHP] Question: $_* etc or $HTTP_*_VARS etc

2002-01-25 Thread Gonzalez, Zara E
I am going through some code that I wrote recently and trying to change it so that I can turn register globals off in my php.ini. However, before I do that I want to make sure I am using the right variables. I read in the manual that $HTTP_*_VARS has been 'replaced' by $_* is this correct? Should

[PHP] Addslashes not working correctly?

2002-01-18 Thread Gonzalez, Zara E
Hi all, I am having a problem with one of my forms. I was testing to see if it would except data with apostrophes, and it doesn't. I thought maybe I had forgotten to addslashes to the variables...but I had the addslashes in my code... I was reading the manual page about addslashes to see if mayb

RE: [PHP] More image questions...

2002-01-17 Thread Gonzalez, Zara E
A little more looking and I found my solution :) Apparently php automatically makes some variables if you have track_vars turned on. http://php3.de/manual/en/html/features.file-upload.html If anyone is interested. Zara -Original Message- From: Gonzalez, Zara E Sent: Thursday

[PHP] More image questions...

2002-01-17 Thread Gonzalez, Zara E
If I have a user input a file in an html form for uploading, is there any way that I can pull the name of the file that was uploaded out some how? For example, I have this code for my form: Upload a file: NOTE: Max file size is KB Whe

RE: [PHP] Re: Image Fields and PHP...

2002-01-16 Thread Gonzalez, Zara E
There are probably more elegant ways of doing this, but it works. :) - Original Message ----- From: "Gonzalez, Zara E" <[EMAIL PROTECTED]> To: "'Lerp'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 1:52 PM Subject:

RE: [PHP] Re: Image Fields and PHP...

2002-01-16 Thread Gonzalez, Zara E
Joe (And/Or others), We are storing the actual images in the DB. We did not want our pictures to be on our webserver. Instead we felt it would be better to keep them on the database server. In order to do this, they had to be stored in the database itself since the database server is not accesibl

[PHP] Image Fields and PHP...

2002-01-14 Thread Gonzalez, Zara E
Not sure if this is off topic for this list or not, but thought I would try... I have a Linux server running Redhat 7.0, PHP 4.1.1, and freetds 0.53. My Linux server connects to a Win2k server running MSSQL 2000. Everything works wonderfully, except, I have an image field in one of my tables and