bonsoir,
j'ai une grande problème en php5 concernant l'appel d'une fonction dans la valeur d'un formulaire le code est le suivant:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <?php
require_once("connexion.php");
class hotel
{
public $Nomhotel;
public function affinomhotel()
{
$Nomhotel1=$_POST['nomhotel'];
$requete ="select Nomhotel from hotel where Nomhotel LIKE '%$Nomhotel1%'";
if($result =mysql_query($requete)){
while($ligne = mysql_fetch_array($result)) {
$Nomhotel=$ligne[0];
echo $Nomhotel;
}
}
}
}
$obj =new hotel;
$obj->affinomhotel();
?> |
ce code pour la fonction que je veux l'appeler et voici le code que je fais pour l'appeler:
<input name="nomhotel" type="text" value ="<?php require_once('recherchernomhotel.php');?>">
il m'affiche la faute suivante:
Notice: Undefined index: nomhotel in D:\EasyPHP-5.3.3\www\pfe\recherchernomhotel.php on line 8
palmerie
Sauriez-vous m'aider, s'il vous plait ?
Merci.
Partager