You Are Here: Home »   Code Friday March 12th 2010

Code Library - php

Html ereg - (1342 views)


<?PHP

function check_code ($str) {
return 
ereg('^<(.+)>$',$str);
}

?>