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 :

programmershelp
finance products
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!




HTML special characters

HTML special characters

<?php
print "<h2>Special Characters</h2>";
for ($i=0;$i<=9999;$i++) {
print "&amp;#$i;";
print " - ";
print "&#$i;";
print "<br />";
};
?>