1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <?php
session_start();
if( isset($_POST['acces']) && $_POST['acces']=='ok2' && !isset( $_SESSION['SitLog']))
{header("location: simulation_credits1.php");}
elseif( isset($_POST['acces']) && $_POST['acces']=='ok2' && isset( $_SESSION['SitLog']))
{header("location: negatifdetailter.php");}
?>
<form action="paypal.php" method="post">
<span class="style15">
<input type="checkbox" name="acces" value="ok2" />
<input name="submit" type="submit" value="J'ACCEPTE" />
</span>
</form>
<p> |