Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

golfing products
wwwstores
domain names

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


underline text in a string

this is how to underline text in a string

<?php
$text = <<<EOD
This is some sample text, we want to make programmershelp appear in bold
EOD;
//before
echo $text;

$word = 'programmershelp';
//after
echo str_replace($word, '<u>' . $word . '</u>', $text);
?>