Código PHP:
<?php
include('conexion.php');
$placas = $_POST['placa'];
$cslt = mysql_query("SELECT nombre_infractor, infraccion FROM datos WHERE placa = '$placas'");
while ($row = mysql_fetch_assoc($cslt))
{
print $row ['nombre_infractor'] . "<br>";
print $row ['infraccion'] . "<br>";
}
?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RESULTADOS</title>
</head>
<body>
<table border="1">
<tr>
<td>Nombre</td>
<td>Infraccion</td>
</tr>
<td><?php ?></td>
<td><?php ?></td>
</table>
</body>
</html>