lol... solucione una parte, pero ahora tengo otra duda
El code ya funcionando es este:
<?php
include ("conexion.php");
include ("header2.php");
$sql = mysql_query ("SELECT *
FROM `midb`.`logs`
WHERE `ip` LIKE CONVERT( _utf8 '%$find%'
USING latin1 )
COLLATE latin1_swedish_ci
OR `user` LIKE CONVERT( _utf8 '%$find%'
USING latin1 )
COLLATE latin1_swedish_ci
OR `datos` LIKE CONVERT( _utf8 '%$find%'
USING latin1 )
COLLATE latin1_swedish_ci
OR `lafecha` LIKE CONVERT( _utf8 '%$find%'
USING latin1 )
COLLATE latin1_swedish_ci
LIMIT 0 , 1000");
while ($row = mysql_fetch_array ($sql))
{
echo "<a href=\"Datos.php?user=".$row["user"]."\"><hr>
User: <b>".$row["user"]."</b><br>
Ip: <b>".$row["ip"]."</a></b>";
echo "<a href=\"del.php?user=".$row["user"]."\"><br>[Delete]</a></b><hr>";
}
?>
Ahora mi pregunta es como hacer un formulario para no tener q escribir la direccion cambiando la variable
hize este, pero no pasa la variable a la otra page.......
<hr>
<form method="POST" action="find.php">
<strong>Que Busco?:</strong> <input type="text" name="find" size="20"><br><br>
<input type="submit" value="find" name="find">
<hr>
<?php
echo "<b> Lista Completa...<hr><p></b>";
include ("conexion.php");
include ("header2.php");
$sql = mysql_query ("SELECT * FROM logs");
while ($row = mysql_fetch_array ($sql))
{
echo "<a href=\"LoGs.php?user=".$row["user"]."\"><hr>
User: <b>".$row["user"]."</b><br>
Ip: <b>".$row["ip"]."</a></b>";
echo "<a href=\"del.php?user=".$row["user"]."\"><br>[Delete]</a></b><hr>";
}
?>
Creo que tengo que poner algo en el otro archivo, el que recibe la buskeda, no?
Alguien sabe k tengo k hacer? estoy desesperado xD