check_htmltbale_lib
Proto type
int check_htmltable_lib (string text)Description
Arguments
Example
<?php
$str = "<table><tr><td>";
if ( check_htmltable_lib ($str) ) {
echo "TABLE 태그를 잘못 사용하였습니다.\n";
exit;
}
?>See also
Last updated