This is what Im doing:

PHP Code:
echo "1";
$con mysql_connect($c,$l,$p);
echo 
"2";

if (
$con) { echo "connected!"; }
if (!
$con)
{
echo 
"No Go";
die(
'Could not connect: ' mysql_error());


All I see is '1' and no other output. What could be wrong?