Hi all,
Is there a simple way in php to reload a page coded within an if
statement.(see code below)
It's very important that the session stays intact.
The filename is RCStudent.php
*************** * A peace of code*********** *************** *
<?php
session_start() ;
?>
if($_POST['ST']!='')
{
$_SESSION['nScreen']=2'';
}
elseif ($_POST['AT']!='')
{
$_SESSION['nScreen']=0'';
*** RELOAD CODE HERE ***
}
*************** **** End code*********** *************** *****
T.i.a.
Regards,
Tino Wintershoven.
The Netherlands.
Is there a simple way in php to reload a page coded within an if
statement.(see code below)
It's very important that the session stays intact.
The filename is RCStudent.php
*************** * A peace of code*********** *************** *
<?php
session_start() ;
?>
if($_POST['ST']!='')
{
$_SESSION['nScreen']=2'';
}
elseif ($_POST['AT']!='')
{
$_SESSION['nScreen']=0'';
*** RELOAD CODE HERE ***
}
*************** **** End code*********** *************** *****
T.i.a.
Regards,
Tino Wintershoven.
The Netherlands.
Comment