Nieuw lid |
|
In de database "persoon" wil ik op naam zoeken, maar bij het intikken van een willekeurige naam in de tabel "naam" krijg ik altijd de eerste te zien. Welke fout zit in de volgende code :
<?php require_once('Connections/my_conn.php'); ?>
<?php
mysql_select_db($database_my_conn, $my_conn);
$query_Recordset1 = "SELECT * FROM persoon";
$Recordset1 = mysql_query($query_Recordset1, $my_conn) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?><!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=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form id="naam" name="naam" method="get" action="persoon.php">
<h2><strong>Zoekscherm</strong></h2>
<p> </p>
<p>te zoeken naam
<input name="naam" type="text" id="naam" />
<input type="submit" name="Submit" value="Zoek" />
</p>
</form>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
<?php require_once('Connections/my_conn.php'); ?> <?php $query_Recordset1 = "SELECT * FROM persoon"; ?><!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=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form id="naam" name="naam" method="get" action="persoon.php"> <h2><strong>Zoekscherm</strong></h2> <p> </p> <p>te zoeken naam <input name="naam" type="text" id="naam" /> <input type="submit" name="Submit" value="Zoek" /> </p> </form> </body> </html> <?php ?>
Ik ben maar pas begonnen met php en graag een hulpje.
Met dank
siliecom14 schreef: Code tags gebruiken !!
|