<?php
//dir_basename.php
function simple()
{
$path = "http://manas6/myphp/File_Directories/Directories/dir_basename.php";
echo "$path<br/>";
$base = basename($path);
echo "<u>Read Filename of the base directory</u>:  $base<br/>";
$base_name = basename($path, ".php");
echo "<u>Read Filename of with out extension</u>: $base_name<br/>";
}
?>
<html>
<title> dir_basename.php</title>
<body text="#000080" bgcolor="#F7F0D7">
Example <u> function base name :</u><br>
<?php
//$test=$_POST[T1];
simple();
?>
</body>
</html>