Jump to content

GamesBond008

New Members
  • Posts

    1
  • Joined

  • Last visited

GamesBond008's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. <?php if(isset($_POST["submit"])) { $fullName = $_POST["fullname"]; $errors = array(); if(empty($fullName)){ array_push($errors, "Fullname is empty"); if (count($errors)>0) { foreach($errors as $error) { echo $error;} } } ?> <html> <head> <title>Help</title> </head> <body> <input class="submit-btn" name="submit" value="Register"> </body> </html> if i use this code, it says Fullname is empty before i click the button i wanna check if something is missing while someone hits Register
×
×
  • 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.