Search found 2 matches
- Sat Feb 06, 2016 5:38 pm
- Forum: PHP - Code
- Topic: Script Question
- Replies: 3
- Views: 5197
Re: Script Question
This is the gdform file: ***** Please use PHP Code syntax tag ***** <?php $request_method = $_SERVER["REQUEST_METHOD"]; if($request_method == "GET"){ $query_vars = $_GET; } elseif ($request_method == "POST"){ $query_vars = $_POST; } reset($query_vars); $t = date("U...
- Sat Feb 06, 2016 4:38 pm
- Forum: PHP - Code
- Topic: Script Question
- Replies: 3
- Views: 5197
Script Question
I have had the following script on my site at http://www.futurebeacon.com for many years: <form action="/gdform.php" method="post"> <input type="hidden" name="subject" value="Form From Future Beacon" /> <input type="hidden" name="redir...