This Post Has Been Viewed 231 Times Since Fri Feb 29, 2008 12:01 pm Posted By web hosting with 1 replies
POST# 721
Posted On: Fri Feb 29, 2008 12:01 pm
to show you how you can display or show the values of an array you can use this small script i created
<?
## THIS TUTORIAL CREATED BY WWW.WEBUNE.COM LICENSED THROUGH WWW.WALLPAPERAMA.COM
$dir_fs_www_root = getenv('SCRIPT_FILENAME');
$words= explode("/", $dir_fs_www_root );
for($i =0; $i < count($words); $i++) {
echo "<strong>$words[$i]</strong> = ";
echo $words[$i]."<br>";
}
?>