Mar 26th, 2016, 9:29 PM
Going to give this another try. I am trying to adapt a basekit site to plain html and use form tools. This is for a simple contact form with 4 fields. The error is happening on line 204 of the process.php, the last line of the if for below.
I am guessing it is getting stuck in a loop at that point. I am going to check the form to make sure syntax is correct. Other than that not sure how to fix this.
Code:
if ($form_info["submission_strip_tags"] == "yes")
{
for ($i=0; $i<count($value); $i++)
$value[$i] = strip_tags($value[$i]);
}
I am guessing it is getting stuck in a loop at that point. I am going to check the form to make sure syntax is correct. Other than that not sure how to fix this.