On 5/14/06, IraqiGeek <[EMAIL PROTECTED]> wrote:
On Saturday, May 13, 2006 4:59 PM GMT,
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> AFAIK it should be working just fine.  I'm not aware of POST not
> working in any circumstance other than PHP not working at all.
>
> Can you post your test script?  We could better judge what's happening
> based off that.  Just make sure you're referencing the variables with
> $_POST or $_REQUEST, not $_GET.
>
> Slightly off topic.  If you're not already, always make sure to
> verify/escape your input from POST/GET/RSS/etc.  That will help make
> your pages more secure.  It might seem like you don't need to do it
> right now at the beginning, but it's a good habit to get into... One
> that I need to follow better (especially when I have a really short
> deadline).
>
> Ray
>

PHP is indeed working. If I use METHOD=GET instead of POST, the script works
without any issues. Here is the test script I'm using:
<html>
<title>test script</title>
<body>
<?php
        //If the user wants to add a joke
        if(isset($_GET['addtext'])):

You're checking for a get string here, not a post string. So it will
never get into this part of the code.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to