View Single Post
05-06-2007, 07:32 PM
#4
Joshimitsu is offline Joshimitsu
Status: Member
Join date: Jan 2007
Location: England
Expertise:
Software:
 
Posts: 229
iTrader: 0 / 0%
 

Joshimitsu is an unknown quantity at this point

Send a message via MSN to Joshimitsu

  Old

You could link to the page with $_GET

PHP Code:
<?php
 
if ($_GET['update'])
 {
 
$update $_GET['update'];
  if (
$update == 'yes')
  {
  
UPDATE code here
  
}
 }
normal output here
?>

You can then link to:

page.php?update=yes

That's a quick base than can be expanded upon.