le 05/03/2010 à 09:32
missaouih
bonjour. j'ai une problème lors de la récupération des information de ma base de donnée(il n'y a pas d'affichage sur l'écran.merci de vous m'aider.voila le code:
la base:wbc et la table:client
merci pour votre attention
la base:wbc et la table:client
<?php
$server="localhost";
$user="root";
$motpasse="";
mysql_connect("$server","$user","$motpasse");
mysql_select_db("wbc");
?>
<!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"><br />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>chercher</title>
</head>
<body bgcolor="#CCCCCC">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="913" height="169">
<param name="movie" value="intro.swf" />
<param name="quality" value="high" />
<embed src="intro.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="913" height="169"></embed>
</object>
<table width="300" height="90"><tr><td></td></tr></table>
</center>
<center>
<html><body>
<form method="post" action="">
<table border="3">
<tr><td>
Numero Tel : </td><td><input type="text" name="tel" size="12"></td></tr></table></form>
<table width="300" height="50"><tr><td></td></tr></table>
<input type="submit" value="chercher"></a>
<a href="index.html"><input type="submit" value="retourner"></a>
<?php
$tel = $_POST['tel'];
$sql = 'SELECT * FROM client WHERE tel = "$tel"';
$req = mysql_query($sql) or die('Erreur SQL !<br />'.$sql.'<br />'.mysql_error());
$data = mysql_fetch_array($req);
mysql_close ();
echo $data['nom'];
echo $data['prenom'];
?>
</body></html
merci pour votre attention