can someone help me with this function file, i get this error
Parse error: parse error, unexpected '.', expecting ')' in c:\sarah\easyphp\www\functions12.inc on line 7
This is my functions12 file:
<?php
function getCountryCode()
{
$countryCode = array(1=> "aa" ,
"abc" ,
"-ac" ,
...
"za" ),
return $countryCode;
}
function getCountryName()
{
$countryName = array(1=> "Albania",
"Alberta",
"Alberta",
...
"Zambia" );
return $countryName;
}
?>
any help appreciated,
cheers
delightful:bemused: