Er is een error op line 23 maar als ik die fix werkt niks.
Dit is de error:
Parse error: syntax error, unexpected $end in /home/resc/domains/resc.gratishosted.nl/public_html/uitloggen.php on line 23
<?
ob_start();
$tit = 'Profile4You.nl - De profile wereld staat open';
$loc1 = 'Uitloggen';
include("include/top.php");
if (isset ($_SESSION['soos_admin_login'])) {
print "<form action='#' method='post'>";
print "Weet u zeker dat u wilt uitloggen? <select name='antwoord'>";
print "<option value='nee'>Nee</option>";
print "<option value='ja'>Ja</option>";
print "<input type='submit' value='kiezen'>";
$antwoord = $_POST['antwoord'];
if (isset ($antwoord)) {
if ($antwoord == 'ja') {
session_destroy();
}
else {
print "Ga terug naar <a href='index.php'>Home </a> pagina";
?>
Wie kan hem fixen
1.380 views