
May 29th, 2000, 08:55 PM
|
|
Contributing User
|
|
Join Date: May 2000
Posts: 49
Time spent in forums: < 1 sec
Reputation Power: 14
|
|
|
my scripts is as below:
$homedir = /usr/........./;
$file = $homedir."set.inc";
include "$file";
while(list($name, $value) = each($location));
{
while(list($pname,$pvalue) = each($value));
{
echo "$value";
}
}
my include file:
$location = array(
"KL" = array(
wheather => "Sunny",
Celsius => "Rain";
),
"PJ" = array(
wheather => "Rain",
Celsius => "Sunny"
)
)
|