I'm using a php form with captcha on surf-wax (DW pages), I now want to use this within acatalog, but I keep breaking it!
The form is fine, I've changed the contact link to go to ../contact.php as the form is in the root. BUT I want ot add a bit of code to direct customers back to shopping after they have sent the message.
The original code is
I want to have
when I use this code the contact form doesn't show.
contact.php calls formmailer.php to process the form, the above code is in formmailer
Help?
The form is fine, I've changed the contact link to go to ../contact.php as the form is in the root. BUT I want ot add a bit of code to direct customers back to shopping after they have sent the message.
The original code is
$msg_sent = "<h2>Thank you!</h2><p>Your message has been sent!</p>";
// SUCCESS MESSAGE
// Shown when message has been sent (you can use html tags).
$msg_sent = "<h2>Thank you!</h2><p>Click <a href="acatalog/index.html">here</a> to continue shopping</p>";
// Shown when message has been sent (you can use html tags).
$msg_sent = "<h2>Thank you!</h2><p>Click <a href="acatalog/index.html">here</a> to continue shopping</p>";
contact.php calls formmailer.php to process the form, the above code is in formmailer
Help?
Comment