View Single Post
  #9  
Old 04-02-2009, 02:36 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 16,770
BMR777 is on a distinguished road
Default RE: Integrate script with php safe includes?

This line is incorrect:

PHP Code:
echo("A required form element was left blank.  Please <a href='register.php'>go back</a> and fill out all the form elements and try again."
Should be:

PHP Code:
echo "A required form element was left blank.  Please <a href='register.php'>go back</a> and fill out all the form elements and try again."
BMR777