|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-06 06:36 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 10:00:02 2025 UTC |
I'm using a generated Script of the PHAKT-Software on a Windows 2000 and Apache Server. The complete Script is: <?php // *** Restrict Access To Page: Grant or deny access to this page $KT_authorizedUsers=" a"; $KT_authFailedURL=" ../ierraccess.php"; $KT_grantAccess=0; session_start(); if (isset($HTTP_SESSION_VARS["KT_Username"])) { if (false || !(isset($HTTP_SESSION_VARS["KT_UserAuthorization"])) || $HTTP_SESSION_VARS["KT_UserAuthorization"]=="" || strpos($KT_authorizedUsers, $HTTP_SESSION_VARS["KT_UserAuthorization"])) { $KT_grantAccess = 1; } } if (!$KT_grantAccess) { $KT_qsChar = "?"; if (strpos($KT_authFailedURL, "?")) $KT_qsChar = "&"; $KT_referrer = $PHP_SELF; if (strlen($QUERY_STRING) > 0) $KT_referrer .= "?" . $QUERY_STRING; $KT_authFailedURL = $KT_authFailedURL . $KT_qsChar . "accessdenied=" . urlencode($KT_referrer); header("Location: $KT_authFailedURL"); exit; } ?> On if (strlen($QUERY_STRING) > 0) $KT_referrer .= "?" . $QUERY_STRING; The PHP Engine ends after the >. I think PHP interpretes the > as end of the Scripting Section. I hope you could help me on this. Yours Tom