Posted by Jerry Stuckle on 08/11/06 01:41
mantrid wrote:
> Hello
> I have used the following php script in the form action to determine whether
> to post the same page again or open the php file called excelsave.php
> depending on which of two submit buttons is pressed in the form
>
> <form action="<?php if(isset($updatestats)){
> echo $_SERVER['PHP_SELF'];
> }else{
> ?>excelsave.php<?php
> }?>" method="post" enctype="multipart/form-data"
> name="savestatments">
>
>
> problem is whatever button is pressed the excel.php is run. what is wrong
> with my 'if.. ' statement?
>
> ian
>
>
Ian,
I think your problem is not the if statement - I suspect $updatestats
isn't being set. What code do you have that sets it?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|