Jump to content

dpenguin71

New Members
  • Posts

    3
  • Joined

  • Last visited

dpenguin71's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thank you! I moved the function definition to the top of the file and it worked great. I don't know why I didn't think of that before, but I appreciate the suggestion!!
  2. Lines 84-88: if (empty($_POST['HomeInfo'])) { $infoErr = "Information about your home is required. "; } else { $HomeInfo = test_input($_POST['HomeInfo']); } Lines 120-125: function test_input($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } So, why is it saying it is undefined, when it clearly is defined? And, more importantly, how do I fix it?
×
×
  • 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.