try:
<?php
preg_match( "/([^\/]+)\.php/", $HTTP_SERVER_VARS['PHP_SELF'],
$matches );
echo "<H2>$matches[1]</H2>";
?>
Morgan
At 01:26 PM 4/4/2001, you wrote:
>How would i go about building a page which could use the name of the page
>less .php as a variable.
>For example:
>
>Say I have a file called screenshot_1.php and another called
>screenshot_2.php . Inside each of those files I want to have code which
>will take the name of the file from the url and assign that value to a
>variable. So $picture would get the value screenshot_1 from
>screenshot_1.php and so on.
>
>
>
>
>Michael Roark
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]