hi..
I'm glad that i join you guys ..
am not so good in PHP but i know much better even i have coded two script befor
i used this script on my own appserv
and got the all wordpress contents
PHP Code:<?
$path = "wordpress";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle)) {
if($file == "." || $file == ".." || $file == "index.php" )
continue;
echo "<a href=\"$file\">$file</a><br />";
}
closedir($dir_handle);
?>
now my question for i.e www.site.com
how to get this i.e contents
thank you



Reply With Quote


Bookmarks