Voilà, j'ai ce message d'erreur qui apparait:

Warning: mysqli_query() expects parameter 3 to be long, string given in C:\wamp\www\WIPinterface\INSERT3.php on line 17
impossible!!

Voici le code, si vous avez besoin d'autres données, faites signes.

D'avance merci!!


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>INSERT3.php</title>
</head>
<body>
<br>
<?php include('WITP.inc');
$cnx=mysqli_connect($host,$user,$password)or die("what else?");
$open=mysqli_select_db($cnx,'wip')or die ("what??");
$req=mysqli_query($cnx,$open,"INSERT INTO game (Game_name,Max_players,
Blue_name,Blue_pass, Red_name, Red_pass,Number_turns, Duration_turns)
VALUES
({$_POST['GN']},{$_POST['MaxP']},{$_POST['BN']},
{$_POST['GPB']}, {$_POST['RN']},{$_POST['GPR']},
{$_POST['NumT']},{$_POST['DurT']})
")or die ('impossible!!');
header("Location: page4.php");
?>
</body>
</html>