non plus de soucis avec $connection je me connect bien
j’ai refais ma connexion qui donne ceci:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 | $query="SELECT * FROM smartphone.select_nom_prenom_user";
try{
$prep = $bdd->prepare($query);
$prep->execute();
$resultats = $prep->fetchAll();
}catch(Exception $e){;
echo "Erreur ! ".$e->getMessage() ;
}
$host = "localhost";
$user = "root";
$pass = "Mm101010";
$dbn = "smartphone";
$link = mysqli_connect($host, $user, $pass, $dbn);
$type_gestion = 1;
switch ($type_gestion) {
case '1':
if (PHP_VERSION_ID < 50400) error_reporting (E_ALL | E_STRICT);
else error_reporting (E_ALL);
ini_set('display_errors', true);
ini_set('html_errors', false);
ini_set('display_startup_errors',true);
ini_set('log_errors', false);
ini_set('error_prepend_string','<span style="color: red;">');
ini_set('error_append_string','<br /></span>');
ini_set('ignore_repeated_errors', true);
break;
}
?>
|
et il m’affiche ceci:
Notice: Undefined variable: choix in C:\wamp64\www\Formulaire\Form_PHP\php_presque_fini\Tableau_essaie.php on line 44 Call Stack: 0.0030 247848 1. {main}() C:\wamp64\www\Formulaire\Form_PHP\php_presque_fini\Tableau_essaie.php:0
Fatal error: Call to undefined method mysqli_result::fetch() in C:\wamp64\www\Formulaire\Form_PHP\php_presque_fini\Tableau_essaie.php on line 45 Call Stack: 0.0030 247848 1. {main}() C:\wamp64\www\Formulaire\Form_PHP\php_presque_fini\Tableau_essaie.php:0
ps: désolé pour l’attente