Myron Turner wrote:
James Lockie wrote:
I am trying to use this code to display a button at the root but it
always displays the button. :-(
if (! (preg_match( "/$\/index.php/", $_SERVER['PHP_SELF'] ))) {
# display a button
....
You got the end-of-string character ($) in the wrong place:
if (! (preg_match( "/\/index.php$/", $_SERVER['PHP_SELF'] ))) {
Richard Lynch wrote:
On Tue, February 6, 2007 7:46 pm, James Lockie wrote:
I am trying to use this code to display a button at the root but it
always displays the button. :-(
if (! (preg_match( "/$\/index.php/", $_SERVER['PHP_SELF'] ))) {
Without any "modifier", $ matches the END of the string.
I wanted this. :-(
Thanks.
if (! (preg_match( "/^\/index.php/", $_SERVER['PHP_SELF'] ))) {
# display a button
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php