-2
Require "header.Php"

if (($_SERVER['REQUEST_METHOD']) == 'POST'){

    $username=addslashes($_POST['username']);

    $email=addslashes($_POST['email']);

    $password=addslashes($_POST['password']);

}
Slava Rozhnev
  • 9,510
  • 6
  • 23
  • 39
Adebiyi
  • 1
  • 1

1 Answers1

0

You don't have semicolon after Require "header.Php". It should be:

Require "header.Php";
Lukas
  • 2,263
  • 1
  • 4
  • 15