[php]$product_name = “Processors”;
switch ($product_name)
{
case “Video Cards”:
echo “Video cards range from $50 to $500”;
break;
case “Monitors”:
echo “LCD monitors range from $200 to $400”;
break;
case “Processors”:
echo “Intel processors range from $100 to $1000”;
break;
default:
echo “Sorry, we don’t carry $product_name in our catalog”;
break;
}[/php]
I did another example that also same. that error msg shows "Parse error: parse error, expecting ','' or
‘;’’ in C:\wamp\www\Fahim\4.switch stat.php on line 36 "
36 line statement is $product_name = “Processors”;