I'm working on a document management system and I'm trying to create reports that show me which documents were inserted daily, but I get the following error:
Warning: mysql_num_rows () expects parameter 1 to be resource, null given in Query was empty.
This is the code for the page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function reloj()
{
var tiempo=new Date();
var hora=tiempo.getHours();
var minuto=tiempo.getMinutes();
var segundo=tiempo.getSeconds();
var textohora=hora+":"+minuto+":"+segundo;
var dia=tiempo.getDate();
var mes=tiempo.getMonth()+1;
var anis=tiempo.getYear();
var textodias=dia +"/" +mes +"/" +anis;
TextHora.value=textohora;
TextDia.value=textodias;
setTimeout("reloj()",500);
}
</script>
<style type="text/css">
<!--
.style3 {font-size: 14px}
-->
</style>
</head>
<body onload="reloj();">
<table width="949" border="1" align="center">
<tr>
<p><img src="../images5.jpg" width="675" height="247" /></p>
</tr>
<tr>
<td><ul id="MenuBar1" class="MenuBarHorizontal">
<li><a href="#" class="MenuBarItemSubmenu">Link</a>
<ul>
<li><a href="Pagina principal.php">Pagina principal</a></li>
<li><a href="Tipos_Trabalhos_INSERIR.php">Tipo de Trabalho</a></li>
<li><a href="SOLICITACAO_INSERIR.php">Solicitação</a></li>
<li><a href="Assistencia_INSERIR.php">Assistência</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">Modificar</a>
<ul>
<li><a href="Tipos_Trabalhos_MostrarTudo.php">Tipo de Trabalho</a></li>
<li><a href="SOLICITACAO_MostrarTudo.php">Solicitação</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">Eliminar</a>
<ul>
<li><a href="Tipos_Trabalhos_MostrarTudo.php">Tipo de Trabalho</a></li>
<li><a href="SOLICITACAO_MostrarTudo.php">Solicitação</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">Consultar</a>
<ul>
<li><a href="Consultar_Assistencias_Tecnicas.php">Assistêcia Por Tipo de Trabalho</a></li>
</ul>
</li>
<li><a href="#" class="MenuBarItemSubmenu">Relatório</a>
<ul>
<li><a href="Relatorio_Assistencias_Realizadas.php">Assistências </a></li>
</ul>
</li>
<li><a href="#">Ajuda</a></li>
</ul></td>
</tr>
<tr>
<td>
<p align="center" class="style3">FORÇAS ARMADAS ANGOLANAS </p>
<p align="center" class="style3">COMANDO DO EXERCITO</p>
<p align="center" class="style3">DIRECÇAO DE INFORMATICA</p>
<hr>
<?php
$server='localhost';
$DBName='arquivo';
$senha='';
$usuario='root';
$con12=mysql_connect($server,$usuario,$senha);
if($con12)
{
$selecionar=mysql_select_db($DBName,$con12);
if($selecionar)
{
$consulta1="SELECT *d.id_documento,d.assunto,d.n_doc,d.id_ueo,d.id_tipodocumento,d.id_classificacao,d.n_folhas,d.n_exemplares,d.id_situacao,d.data,d.id_tipo_registo,d.executor FROM documento t,classificacao p,proveniencia o,situacao m,ueo d,documennto g,despacho e,tipo de registo a,tipo_de_documento s WHERE (p.iddocumento=g.iddocumento) and (d.id_situacao=o.id_situacao) and (d.id_ueo=m.id_ueo) and (d.idtipodocumento=a.idtipodocumento) and (d.idclassificacao=t.idclassificacao) and (d.id_situacao=o.id_situacao) and (t.descricao like '$COMBO')";
$resultado1=mysql_query($consulta,$con12);
echo "<table border='1' align='center' width='900' bgcolor='#FFFFFF'> ";
echo "<tr>";
echo "<table border='1' align='center' width='900' bgcolor='#FFFFFF'> ";
echo "<tr>";
echo "<th colspan='9'>";
echo 'documento de ';echo $COMBO;
echo "</th>";
echo "</tr>";
echo "<tr>";
echo "<th>";
echo 'IDENTIFICADOR DE DOCUMENTO';
echo "</th>";
echo "<th>";
echo 'ASSUNTO';
echo "</th>";
echo "<th>";
echo 'NUMERO DE DOCUMENTO';
echo "</th>";
echo "<th>";
echo 'IDENTIFICADOR DE UEO';
echo "</th>";
echo "<th>";
echo 'IDENTIFICADOR DE TIPO DE DOCUMENTO';
echo "</th>";
echo "<th>";
echo 'IDENTIFICADOR DE CLASSIFICACAO';
echo "</th>";
echo "<th>";
echo 'NUMERO DE EXEMPLARES';
echo "</th>";
echo "<th>";
echo 'IDENTIFICADOR DE SITUACAO';
echo "</th>";
echo "<th>";
echo 'DATA';
echo "</th>";
echo"<th>";
echo 'IDENTIFICADOR DE TIPO DE REGISTO';
echo "</th>";
echo "<th>";
echo 'EXECUTOR';
echo "</th>";
echo "<th>";
echo "</tr>";
echo "<br>";
echo " Quantidade de Registros: ";
echo (mysql_num_rows ($resultado) or die ("".mysql_error ())); O ERRO APARECE AQUI NESTA LINHA
while ($Reg=mysql_fetch_row($resultado))
{
echo "<tr>";
foreach ($Reg as $Val)
{
echo "<td>$Val</td> ";
}
echo "</tr>";
}
echo "</table>";
mysql_close($con12);
}
}
?>
</td>
</tr>
</table>
<p align="center">
<label>Día
<input type="text" name="TextDia" id="TextDia" size="6" />
</label>
vb
<label>Hora
<input type="text" name="TextHora" id="TextHora" size="6" />
</label>
</p>
</td>
</tr>
</table>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
</html>
Could you please help me? I'm a beginner and this is my first software. Thank you