On 1/8/03 9:48 PM, "Todd Ballard" <ToddManaze at ev1.netrote:
> A little help please! I don't under stand what im doing wrong?
> Todd
>
> <?
> $html = "<SPAN class=\"title\"> $title </span>";
> $title = "The Title";
> echo $html;
> ?>
the variable is defined after you use it !
try this:
<?
$title = "The Title";
$html = "<SPAN class=\"title\"> $title </span>";
echo $html;
?>