Hi All
I am tring to pull some sql info, the problem I have is that when im using the
echo <<<HERE command,
the sql info will not be displayed,
i think this is due to droping the dashes ('') like this (have to drop the dashes or it fails debuging)
code not working with echo<<<HERE
<? while($row = mysql_fetch_array($results3)){?>
<? echo $row[short]; ?>
<? } ?>
HERE;
Code working: but not with echo<<<HERE
<? while($row = mysql_fetch_array($results3)){?>
<? echo $row['short]'; ?>
<? } ?>
HERE;
Is there any other ways round this ? anyone please.,
thanks for reading