>Although, it could be shortened even more, to:
>
><td><?php $link = "<a href=\"".$row[2]."\">Click here</a>";
>       echo $link;?></td>

Or still more, to:
        <td><a href="<?= $row[2] ?>">Click Here</a></td>

...which starts to approach the original legibility of HTML for me, and
the syntax hilighting in BBEdit is corrrect. I've been tending to use
constructions like that instead of templating classes like smarty or
printf constructiions, and I've been very pleased with em.

---------------------------------------------------------------------
michal migurski- contact info and pgp key:
sf/ca            http://mike.teczno.com/contact.html

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

Reply via email to