Forum: PHP Nov 19th, 2008 |
| Replies: 2 Views: 702 Remember, you may need the GD library for this :idea: |
Forum: PHP Nov 17th, 2008 |
| Replies: 3 Views: 1,998 What you’re doing is essentially submitting the data again.
You could check whether or not the submit button was actioned:
if (isset($_POST['Submit'])) {
Name your submit button 'Submit'
... |
Forum: PHP Nov 17th, 2008 |
| Replies: 4 Views: 473 Another good site is http://www.w3schools.com/php/default.asp
Tizag - this is a good site, however my system did once alert Spyware from this site!! Mite be nothing, but you never know!
I also... |
Forum: PHP Mar 23rd, 2007 |
| Replies: 5 Views: 2,197 Instead of header( "Location: ".$session->referrer ); put the success page in a different variable e.g.
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');... |