hi!
i have a few function for a form which is called on isset $_GET and $_POST!
like this example:
and allways when i update it brings me to the function draw_step_1!!!PHP Code:<?php
if(isset($_POST["update1"])) draw_step1();
else if(isset($_POST["update2"])) draw_step2();
else if(isset($_POST["update3"])) draw_step3();
else if(isset($_POST["update4"])) draw_step4();
else draw_step1();
?>
it it the way like return false that when i update a button on function draw_step3 that i remain on that part of the script (draw_step3) instead to go to draw_step1()???
suggestions???
thanx in advance







Bookmarks