i used to think

     <table bgcolor="#ffffff">
     <tr>
     <td bgcolor="#eeeeee" width="300">
     Name :
    <?php
     $name = 'johnny';
     printf("%s %s %s","<b>","$name","</b>");?>
     </td>
     <td bgcolor="#eeeeee" width="300">
     Title :
    <?php
     $title = 'smith';
     printf("%s %s %s","<b>","$title","</b>");?>
     </td>
     </tr>
     </table>

or more like :

     <table bgcolor="#ffffff">
     <tr>
     <td bgcolor="#eeeeee" width="300">
     Name :
    <b><?php
     $name = 'johnny';
     echo $name; ?></b>
     </td>
     <td bgcolor="#eeeeee" width="300">
     Title :
    <b><?php
     $title = 'smith';
     echo $title; ?></b>
     </td>
     </tr>
     </table>


-------------------------------------------
Yeah, there are more important things in life than money, but they won't go
out with you if you don't have any.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to