Wow, thanks for the tips. That makes life a lot simpler!


Mike Ford wrote:


Another way you could go, as this is mostly HTML with some PHP values thrown
in, is to write it as such -- then all your newlines are present exactly as
they appear.  This would look something like:


By the way, the test


if($includea1 == TRUE)

should be written as just

if($includea1)

It has exactly the same outcome, but is both more readable (if you've named
your variables suitably) and more efficient (since you've saved the
redundant comparison operation).

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



Reply via email to