Hi,

I have a very annoying problem with pages that re-display using the <form 
action tag>. On re-display the banner, which is set absolute position at 0px, 
shifts down by about an inch. I've isolated the cause to the <form action 
tag>.

Simplified code for bad.php page:

<?php session_start(); ob_start(); ?>
/* html head style body tags */

<form action="bad.php" method="post">
<?php include("banner.php"); ?> 

<input type="submit" name="submit" value="Add Names"

/* closing form body html tags */

<?php
if($_POST['submit'] == "Add Names"){

                switch ($_SESSION['status']) :

                        case "Member" :
                                header("location: add-names.php");
                                break;

                        default :
                                header("location: join.php");
                                break;

                endswitch;
}
?>

Is there a workaround for this problem, or is this a normal occurence?
Any suggestions or pointers would be gratefully appreciated. 

Tia,
Andre

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to