-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Found by Cooper - http://www.sidengel.com/wp-content/uploads/2017/03/AeWGfPZ.png Fixed by changing the form capture method to GET, instead of POST. Also, cleaned up the CSS a little bit.
- Loading branch information
Sid Engel
committed
Mar 5, 2017
1 parent
75b03ef
commit 5016b76
Showing
3 changed files
with
10 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
$myemail = "[email protected]"; | ||
|
||
/* Check all form inputs using check_input function */ | ||
if (isset($_POST["submit"])) { | ||
$name = $_POST['name']; | ||
$email = $_POST['email']; | ||
$message = $_POST['message']; | ||
$cords = $_POST['cords']; | ||
if (isset($_GET["submit"])) { | ||
$name = $_GET['name']; | ||
$email = $_GET['email']; | ||
$message = $_GET['message']; | ||
$cords = $_GET['cords']; | ||
} | ||
else { | ||
echo $myError; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters