Forum Moderators: coopster
Parse error: parse error, unexpected $ in /home/landingh/public_html/functions.inc on line 16
here is my code:
<?php
function getStateCode()
{
$stateCode = array(1=> "AL",
###############...#########
"WY" );
return $stateCode;
function getStateName()
{
$stateName = array(1=> "ALABAMA",
###############...###########
"WYOMING" );
return $stateName;
}
?><!-- this is 16 //-->
Thanks
Mitchell