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]
- Re: [PHP] looking for a PHP editor Toby Butzon
- Re: [PHP] looking for a PHP editor Alexander Wagner
- Re: [PHP] looking for a PHP editor Brian Clark
- RE: [PHP] mixing HTML and PHP code MR
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code burk
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code Alexander Wagner
- Re: [PHP] mixing HTML and PHP code Philip Olson
- RE: [PHP] mixing HTML and PHP code MR
- Re: [PHP] mixing HTML and PHP code Hrishi
- Re: [PHP] mixing HTML and PHP code Alex Black
- RE: [PHP] mixing HTML and PHP code Antonio S. Martins Jr.
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code Jade Ohlhauser
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code Alexander Wagner
- Re: [PHP] mixing HTML and PHP code Alex Black
- Re: [PHP] mixing HTML and PHP code Tim Zickus
- RE: [PHP] mixing HTML and PHP code Cal Evans

