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 :

finance products
domain names
golfing products

Downloads :

Misc :

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

Valid XHTML 1.0 Transitional


Valid CSS!




strip out certain tags

strip out certain tags from a string or page

<?php
$text='This is <b>basic bold text which we want left</b>
this is a dodgy script <script>some javascript code here</script>';

// Strip those tags
echo (strip_tags($text,'<b>'));
?>