Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
06-03-2013, 10:51 PM | #1 |
Retired
Industry Role:
Join Date: Jul 2011
Location: PDXXX
Posts: 1,976
|
Any Form Gurus Doing Pro Bono?
Forms always piss me off. Here is what I'm trying to accomplish...**Note this is not for any of my adult sites...and I wouldn't really call it mainstream either...
I've got an email "subscribe" form designed on my site but I want to code it with my mailchimp subscribe form code so that my subscribers are saved in my mail chip account. This form collects only a single email address and it has a submit button. It would be nice if the form and button disappeared after user submits and is replaced with a "thank you". No I don't really expect anyone to do this for free but I don't want to pay more than $10-$15 because I've already got a designed form and I've already go the code...I just can't figure out how to put them together
__________________
Piper Pines |
06-03-2013, 11:03 PM | #2 |
( ͡ʘ╭͜ʖ╮͡ʘ)
Industry Role:
Join Date: Mar 2004
Posts: 19,987
|
|
06-04-2013, 01:27 AM | #3 |
Registered User
Industry Role:
Join Date: Apr 2013
Posts: 13
|
When your script redirects back to the original page (Should be something like: header("Location:/pagexyz.php"); ) just add a variable like pagexyz.php?subscribe=success
Then on your form, just wrap the form in something like: if($_GET['subscribe']){ echo "Thank you!";}else{ #YOUR FORM INFO } |