VietBoyVS
01-13-2004, 06:37 AM
<?php
$name1 = "d1.html";
$title1 = "a";
?>
<?php
echo "
<table width="680" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="338"><div align="center">Title</div></td>
<td width="342"><div align="center"></div></td>
</tr>
<tr>
<td><?php echo $title1 ?> </td>
<td><a href="<?php echo $name1 ?>">NAME</a> </td>
</tr>
";
?>
Parse error: parse error, expecting `','' or `';'' in name.php on line 8; any way i can fix this?
$name1 = "d1.html";
$title1 = "a";
?>
<?php
echo "
<table width="680" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="338"><div align="center">Title</div></td>
<td width="342"><div align="center"></div></td>
</tr>
<tr>
<td><?php echo $title1 ?> </td>
<td><a href="<?php echo $name1 ?>">NAME</a> </td>
</tr>
";
?>
Parse error: parse error, expecting `','' or `';'' in name.php on line 8; any way i can fix this?