engelsystem/includes/funktion_faq.php

13 lines
173 B
PHP
Raw Normal View History

<?PHP
function noAnswer() {
global $con;
$SQL = "SELECT UID FROM Questions WHERE (Answer=\"\")";
$Res=mysql_query($SQL, $con);
return mysql_num_rows($Res);
}
?>