View Single Post
ישן 11-07-07, 07:40   # 6
Daniel
אחראי פורום
 
מיני פרופיל
תאריך הצטרפות: Mar 2007
הודעות: 2,875

Daniel לא מחובר  

טמפלייטס+
PHP קוד:
<?
$to_print 
null//Just to make sure.
$to_print .= <<<EOF
Some text.
EOF;
$x 3;
$to_print.=<<<EOF
{
$x} = 3*4.
EOF;

//End of the file.
echo $to_print//You can also use other print function
?>
  Reply With Quote