Can someone tell me how to parse part of a string? I can use the following:
<?php
$text = $_SERVER['PHP_SELF']; //$PHP_SELF //(document.url);
echo $text;
?>
to get this result:
"Your currently at /test.php "
I just want to get "test.php " without the dash. I also need to parse out
parts of other strings. I know how to use Mid(), Left(), and Right() in VB,
but no clue for PHP.
Thanks in advance for the assistance.