Jump to content

newbie need help in php script plz


holier

Recommended Posts

i've tried this php script in html

<head>

 

<title>A BASIC HTML FORM</title>

 

        <? PHP

            $username = $_POST['username'];

            if ($username == "holier") {

            print("Welcome back, friend!!");

              }

            else {

            print("You're not a memeber of this site");

              }

        ?>

</head>

 

but nothing showing at the top of page tell me why plz ?

 

Link to comment
https://forums.phpfreaks.com/topic/224344-newbie-need-help-in-php-script-plz/
Share on other sites

There's a space between and php. Remove it.

 

Yes, there is a fatal error which in return shows a blank page.  For temporary debugging you can add these 2 lines directly after your opening <?php tag to see the error:

ini_set ("display_errors", "1");
error_reporting(E_ALL);

 

(Please use


tags)

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.