Skip to main content
Improved formatting and punctuation.
Source Link
Pang
  • 10.2k
  • 146
  • 87
  • 126

Replace the second line:

if (!$_POST['submit'])

if (!$_POST['submit']) 

with:

if (!isset($_POST['submit']))

if (!isset($_POST['submit'])) 

Replace the second line:

if (!$_POST['submit'])

with

if (!isset($_POST['submit']))

Replace the second line:

if (!$_POST['submit']) 

with:

if (!isset($_POST['submit'])) 
Format Code
Source Link
Patrick
  • 6k
  • 17
  • 69
  • 110

Replace the second line if (!$_POST['submit']) with if (!isset($_POST['submit'])):

if (!$_POST['submit'])

with

if (!isset($_POST['submit']))

Replace the second line if (!$_POST['submit']) with if (!isset($_POST['submit']))

Replace the second line:

if (!$_POST['submit'])

with

if (!isset($_POST['submit']))

Source Link

Replace the second line if (!$_POST['submit']) with if (!isset($_POST['submit']))