yeahz Posted February 9, 2009 Report Share Posted February 9, 2009 Man ir vajadzīgs lai šis kods: <meta http-equiv="refresh" content="0;url=http://example.com/" /> iedarbojas <head> daļā tikai tad kad ir atvērta kāda noteikta lapa, piemēram, lai viņš ieslēdzas tikai tad, kad esu /x.php lapā. Link to comment Share on other sites More sharing options...
KillerBean Posted February 9, 2009 Report Share Posted February 9, 2009 vari mēģināt $_SERVER['REQUEST_URI'] PHP.net: http://lv.php.net/reserved.variables.server Link to comment Share on other sites More sharing options...
marcis Posted February 10, 2009 Report Share Posted February 10, 2009 if($_SERVER['PHP_SELF']=="/x.php"){ header("Location: http://example.com"); exit; } Link to comment Share on other sites More sharing options...
Recommended Posts