--- Jake McHenry <[EMAIL PROTECTED]> wrote:
> print_r($_POST) shows me that $_POST has the single 0 value. I solved
> my problem, instead of having just if ($_POST['test']), I changed it
> to if ($_POST['test'] != ""). Right after I posted, I tried this, and
> a couple other things.. The problem only happens when I don't have any
> conditions within the ().

Your problem has nothing to do with POST then.

if (0)
{
     echo 'This will never print';
}

Hope that helps.

Chris

=====
My Blog
     http://shiflett.org/
HTTP Developer's Handbook
     http://httphandbook.org/
RAMP Training Courses
     http://www.nyphp.org/ramp

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

Reply via email to