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.

--
Regards,

Clive

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

Reply via email to