On Sat, February 23, 2008 10:16 am, Emiliano Boragina wrote:
> <?
>
> $buscar = $_REQUEST['buscar'];
>
> $base = "inscripcion";
>
> $conexion = mysql_connect ( 'localhost' , 'root' , 'root' );
>
> mysql_select_db ( $base , $conexion );
>
> echo "<table border='1'>";
>
> $resultado = mysql_query ("select * from alumnos where Curso
> like
> '$buscar'" , $conexion);
echo "Found ", mysql_num_rows($resultado), " results.<br />\n";
> while ( $registro = mysql_fetch_row ($resultado)) {
>
> echo "<tr>";
>
> foreach ( $registro as $clave ) {
>
> echo "<td>" . $clave . "</td>";
>
> }
>
> }
>
> echo "</tr></table>";
>
> ?>
>
> <form action="buscar.php" method="post">
>
> <input type="text" name="buscar"><br>
>
> <input type="submit" value="BUSCAR">
>
> </form>
>
>
>
> I want to add a message when find results on the DB: Find n results,
> when
> dont find results: 0 results.
>
> How and where I must write the IF, and how I do for the n (number of
> results) appear.
--
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/from/lynch
Yeah, I get a buck. So?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php