View Single Post
  #2 (permalink)  
Old 05-06-2008, 02:45 PM
phpforfun's Avatar   
phpforfun phpforfun is offline
Programming God
 
Join Date: Feb 2008
Posts: 916
Last Blog:
Programming "Just a ...
Rep Power: 11
phpforfun will become famous soon enoughphpforfun will become famous soon enough
Default Re: Dynamically update php variables based on option value

do you mean this?

PHP Code:
<?
if(isset($_GET['finish'])){
     Echo 
$_GET['finish'];
} Else {
     
//code to echo form
}
?>
__________________

Last edited by John; 05-06-2008 at 03:53 PM. Reason: fixed syntax error
Reply With Quote