On Thu, 2006-10-26 at 11:43 +0200, clive wrote:
> Paul Novitski wrote:
> > It's so interesting that some details bug some people and others bug 
> > others.  In an expression such as this:
> >
> >         echo '<option value="' . $day . '"' . $selected . '>' . $day . 
> > '</option>';
> or you could write it likes this '
>     echo "<option value='$day' $selected > $day </option>";
> 
> much easier to read, but slightly more taxing on the server.

Also slightly more taxing on standards since single quotes are bad :)

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

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

Reply via email to