Código HTML:
<body> <table width="1024" border="0"> <tr> <td height="600"><table width="800" border="0" align="center"> <tr> <td><img src="encabezado.png" alt="encabezado" width="800" height="75" /></td> </tr> <tr> <td background="cuerpo.png" width="800" height="400"> <?php $a="status"; $b="Proceso"; $status="Proceso"; @ $db = mysql_pconnect("localhost", "root", "contraseña"); if (!$db) { echo "Error: No se ha podido conectar a la base de datos. Por favor, prueba de nuevo más tarde."; exit; } mysql_select_db("casos de computo"); $update= "Update ingreso_caso SET status = '$status'" ; $consulta = "select * from ingreso_caso where ".$a." like '%".$b."%'"; $resultado = mysql_query($consulta); $num_resultados = mysql_num_rows($resultado); echo "<p>Número de libros encontrados: ".$num_resultados."</p>"; for ($i=0; $i <$num_resultados; $i++) { $row = mysql_fetch_array($resultado); echo "<p><strong>".($i+1).". Caso: "; echo ($row["Caso"]); echo "</strong><br>Agencia: "; echo ($row["Agencia"]); echo "<br>Contacto: "; echo ($row["Contacto"]); echo "<br>Problema: "; echo ($row["Problema"]); echo "<br>Encargado: "; echo ($row["Encargado"]); echo "<br>Creado: "; echo ($row["Creado"]); echo "</p>"; } ?> </td> </tr> <tr> <td><img src="pie.png" alt="pie" width="800" height="75" /></td> </tr> </table></td> </tr> </table> </body> </html>