<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Listing 5.13 A Code Block Containing Multiple print() statements</title>
</head>
<body>
<div>
<?php
$display_prices = true;
if ( $display_prices ) {
print "<table border=\"1\">";
print "<tr><td colspan=\"3\">";
print "todays prices in dollars";
print "</td></tr><tr>";
print "<td>14</td><td>32</td><td>71</td>";
print "</tr></table>";
}
?>
</div>
</body>
</html>
Eredmény:
todays prices in dollars | ||
14 | 32 | 71 |
Nincsenek megjegyzések:
Megjegyzés küldése