I cant find the error in my code

I am learning PHP using Kevin Yank’s book…i am writing the same codes that he has given on the book but the one brought the this error “Parse error: syntax error, unexpected ‘}’ in C:\xampp\htdocs\TechSort\welcome\index.php on line 20”. i wonder if it has anything to do with indentation.
kindly assist
the code is as follows

<?php
if(!isset($_REQUEST['firstname']))
{
    include 'form.html.php';
}
else
{
 $firstname = $_REQUEST['firstname'];
 $lastname = $_REQUEST['lastname'];
 if ($firstname == 'Suleiman' and $lastname == 'Nassor') 
    {
        $output = 'Welcome, oh glorious leader!';
    }
    else
    {
        $output = 'Welcome to our site, ' . htmlspecialchars($firstname, ENT_QUOTES, 'UTF_8') . ' ' . 
                                            htmlspecialchars($firstname, ENT_QUOTES, 'UTF_8') . '!';
    }
    include 'welcome.html.php'
}

Hi @kasule, welcome to the forums. We would need to see your code to be able to comment it. Can you post it here? You can copy it into your post but you need to precede the code by 3 backticks ``` on a separate line and 3 backticks on a separate line after…

<?php
if(!isset($_REQUEST['firstname']))
{
    include 'form.html.php';
}
else
{
 $firstname = $_REQUEST['firstname'];
 $lastname = $_REQUEST['lastname'];
 if ($firstname == 'Suleiman' and $lastname == 'Nassor') 
    {
        $output = 'Welcome, oh glorious leader!';
    }
    else
    {
        $output = 'Welcome to our site, ' . htmlspecialchars($firstname, ENT_QUOTES, 'UTF_8') . ' ' . 
                                            htmlspecialchars($firstname, ENT_QUOTES, 'UTF_8') . '!';
    }
    include 'welcome.html.php'
}

thanks gandalf458, that’s the code

You should wrap code in three backticks (as previously suggested) so it displays properly (on many keyboards it is the key immediately below the Esc key). Alternatively select the code and press the </> button.

include ‘welcome.html.php’

is missing a semicolon at the end.

Thank you so much @gandalf458…it is now sorted,cheers

1 Like

Great. You’re welcome. We’ll try to fix the backticks for anyone who comes after…

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.