Which would run faster and generate less load on the server, or does it
matter:

<?php

$output = "
<table....
...
...html

.... $name $phone ...
";

echo $output;
?>

------  OR -------------

<table....
...
...
<?php echo $name ?> ... <?php echo $phone ?>
..
</table>

I find it sucks to try and put all the php tags around stuff, so I just
include it all.....

--
Chris Edwards
Web Application Developer
Outer Banks Internet, Inc.
252-441-6698
[EMAIL PROTECTED]
http://www.OuterBanksInternet.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to