gravity 1.4.5 - http://hiremyparents.com/9714-2/ is the form that sends to a redirect that was working great up to Saturday when it just started sending blank emails with no changes to the site my end. However, two other forms on my site are working great. Grrr.
When I submit the form above it goes to http://hiremyparents.com/redirect/?category= where category is the field passed in the query string - goes to http://hiremyparents.com/redirect/ which has the following code:
<?php
// redirect form based on the Which Category Would Best Describe You value passed in querystring
$category = $_GET['category'];
switch ($category)
{
case "Flexible Job Seeker":
// if Flexible Job Seeker redirect to the following page
header("Location: http://hiremyparents.com/recommendations/12htf/");
break;
case "Home Business Entrepreneur":
// if Home Business Entrepreneur redirect to the following page
header("Location: http://hiremyparents.com/recommendations/13htf/");
break;
case "Freelancer For Hire":
// if Freelancer For Hire redirect to the following page
header("Location: http://hiremyparents.com/recommendations/14htf/");
break;
case "Trying To Earn An Income Online":
// if Trying To Earn An Income Online redirect to the following page
header("Location: http://hiremyparents.com/recommendations/15htf/");
break;
}
/*
Template Name: form redirect
*/
?>
As I say, it worked great and then stopped but the other forms still work.
At the same time I'm getting informed that I have over a 1000 entries in various forms but can't get the listed data on any of them.
Please help, losing money:(
Posted 13 years ago on Tuesday February 1, 2011 |
Permalink