Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a newbie in php programming and i can't make it finding where is the error in this piece of code:

<p>
       <?php
            function check_input($data)
                {
                    $data = trim($data);
                    $data = stripslashes($data);
                    $data = htmlspecialchars($data);
                    $data = nl2br($data);
                    return $data;
                }
            $password = $_POST['password'];//security check on the input of the password

            if (isset($password))
            {
                if ($password == "hotdog")
                {
       ?>
                    Here is the secret NASA code: <br/>
                    <strong>RT4567EGST442YT3ZQS</strong>
       <?php
                else
                {
       ?>
                    The password is incorrect. <br/>
                    <a href="index.php">go and try here again</a>.
       <?php
                }
                }
            }
            else
            {
       ?>
                You have to put a password. thanks to retry on <a href="index.php">this page</a>.
       <?php
            }
       ?>
   </p> 

Any help will be appreciated! thanks a lot. Mike

share|improve this question
1  
You might be better with heredoc instead of all those nested <?php ?> tags... php.net/manual/en/… – Adam Jun 20 '12 at 0:03
thanks i will check that – Mathieu Jun 20 '12 at 0:11

2 Answers

up vote 0 down vote accepted

You also added a } too much on line 28.

This should work:

    <p>
   <?php
    function check_input($data)
        {
            $data = trim($data);
            $data = stripslashes($data);
            $data = htmlspecialchars($data);
            $data = nl2br($data);
            return $data;
        }

        $password = $_POST['password'];//security check on the input of the password

        if (isset($password))
        {
            if ($password == "hotdog")
            {
   ?>
                Here is the secret NASA code: <br/>
                <strong>RT4567EGST442YT3ZQS</strong>
   <?php
            }
            else
            {
   ?>
                The password is incorrect. <br/>
                <a href="index.php">go and try here again</a>.
   <?php
            }
        }
        else
        {
   ?>
            You have to put a password. thanks to retry on <a href="index.php">this page</a>.
   <?php
        }
   ?></p> 
share|improve this answer
changed. it works now. – Mathieu Jun 20 '12 at 0:23
If my answer is the right one, please mark it. – edwardmp Jun 20 '12 at 0:24
i think i will also check out heredoc and nowdoc as suggested by Adam php.net/manual/en/… – Mathieu Jun 20 '12 at 0:24
You should, but that has nothing to do with your question. – edwardmp Jun 20 '12 at 0:24
i'm new here on stackoverflow. i've pu that the "feedback was useful". How can i "mark it" if the answer is right. thanks – Mathieu Jun 20 '12 at 8:27
show 2 more comments

Near line 21 in the code you posted, you're missing a }. Change

    <?php
            else
            {

    ?>

to

    <?php
            } else
            {
    ?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.