OK, here's the code, as it was in the hierarchy of the rest of the tags:

                                        <form id="verifyWho" action="step1.php" 
method="get"
name="verifyWho">
                                                <input type="hidden" 
name="email" value="
                                                <?PHP
                                                echo $email;
                                                ?>
                                                ">
                                                <input type="hidden" 
name="pass" value="
                                                <?PHP
                                                echo $pass;
                                                ?>
                                                ">
When I changed it to:
                                        <form id="verifyWho" action="step1.php" 
method="get"
name="verifyWho">
                                                <input type="hidden" 
name="email" value="<?PHP echo $email;?>">
                                                <input type="hidden" 
name="pass" value="<?PHP echo $pass;?>">

it worked fine.

Dale

--- In [email protected], Jeromie Clark <[EMAIL PROTECTED]> wrote:
> ::Jeromie's Head Explodes::
> 
> Okay, that's a solution -- but I think you'll agree that it's far from 
> ideal. 
> Hopefully you'll never need to maintain that code -- what a headache.
> 
> There's *no* reason that you need to strip out all the whitespace from 
> your php and html.
> You *might* need to take a different approach, but it's gonna be better 
> than a one-line combo HTML/PHP page.
> 
> Anyway, post your code with whitespace, and I'll take a look at it for 
> you.  :)
> 
> -Jeromie






The PHP_mySQL group is dedicated to learn more about the PHP_mySQL web database 
possibilities through group learning.  
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php_mysql/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to