Código PHP:
<?php
function OpenTable() {
echo "<table width=\"800\" height=\"400\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">
<tr>
<td align=\"center\" valign=\"top\" background=\"/images/Cabecera.gif\">
<img src=\"/images/trans.gif\" width=\"800\" height=\"400\" border=\"0\">
";
}
function CloseTable() {
echo "</td>
</tr>
</table>";
}
?>
Además me podrían explicar que diferencias hay entre empezar el código php así:
<?php ?> o así:
<? ?>
Salu2!