Jump to content

Form is submiting get instead of post & My if sstatment is not working


Recommended Posts

Hey guys

 

Form is submiting get instead of post & My if sstatment is not working

 

My code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>VisualUpload Share what you see</title>
</head>

<body bgcolor="#f1f1f1" text="#000000" link="33cc00" vlink="33cc00" alink="33cc00">
  <table align="center" width="95%" bgcolor="#ffffff" style="border-color: #999999; border-style:solid;border-width:1px" border="0">
   <tr>
    <td>
     <table>
      <tr>
       <td width="50%">
        <img src="images/logo.png" />
       </td>
       <td>
        <form method="post" action="login.php" >
        <table width="100%">
         <tr>
          <td>
           Username:
          </td>
          <td>
           <input type="text" name="user" size="16" maxlength="25"/> <a href="register.php">Register</a>
          </td>
          </tr><tr>
           <td>
            Password:
           </td>
           <td>
            <input type="password" name="pass" size="16" maxlength="25"/> <input type="submit" value="Log in"/>
           </td>
         </tr>
        </table>
        </form>
       </td>
      </tr>
     </table>
<?php
if (isset($_COOKIE['user'])){
echo <<<ENDHTML
     <tr>
      <td>
       <table width="100%">
        <tr>
         <td width="20%" valign="top">
          <font size="4">
           <a href="upload.php"><strong>Upload</strong></a><br />
           <a href="albums.php"><strong>Albums</strong></a><br />
           <a href="profile.php"><strong>Profile</strong></a><br />
          </font>
         </td>
         <td valign="top">
          <font size="4">
           <b>Recant Images</b><br />
           <font size="2">
            You Haven't uploaded any picturs!<br />
           </font>
           </font>
           <font size="4">
            <b>Recant Videos</b><br />
            <font size="2">
             You Haven't uploaded any videos!<br />
           </font>
          </font>
         </td>
        </tr>
       </table>
      </td>
     </tr>

ENDHTML;
}
?>
    </td>
   </tr>
  </table>
</body>
</html>

 

I have no idea whats wrong with it i have looked to see if i can see anything

 

Thanks

 

Jragon

Hi Jragon!

 

I have loaded your code onto my own server and the form is using POST for me.

 

As for the IF statement, I am not an expert but I have never come across your use of the <<<ENDHTML before so I did a quick 'Google' for it and from my understanding it is primarily a Perl thing rather than PHP.  From what I have seen though, the correct usage of <<<ENDHTML would be as so:

 

<?php
echo <<<ENDHTML;
     .... your HTML code ....
ENDHTML;
?>

 

But this doesn't seem to work for me when I tried it.

 

Instead though, if you remove the ENDHTML part's and encapsulate the HTML code within single quotes (') the if statement seems to run nicely (but don't forget to escape the single quotes that you have in the text or you'll get errors).

 

 

-----------

 

On another note:  It may be an idea to place the form code within an ELSE statement at the end of your script.  I only say this because at the moment, if a user is logged in they will see the upload, albums and profile links as well as seeing a login form.  Sticking it into an ELSE statement would show one or the other.  :)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.