-2

I don't know whats wrong, but I'm not a PHP expert. Can anyone help me?

My PHP code:

session_start()
$verify = $_SESSION["verify"];
include '../register.php';
$user = strtolower($_POST["name"]);
$rdm = rand(1000,9999);
$verifylink = "https://darkcrafting.net/verify/";

I'm including this to another site but this doesn't work.

ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257

1 Answers1

1

You missed ; after session_start()

session_start();
Squalo
  • 119
  • 11