Easyphp
Fermé
johnybath
Messages postés
14
Date d'inscription
lundi 2 février 2009
Statut
Membre
Dernière intervention
23 février 2009
-
16 févr. 2009 à 16:35
el plaga Messages postés 89 Date d'inscription jeudi 11 septembre 2008 Statut Membre Dernière intervention 14 janvier 2010 - 17 févr. 2009 à 10:09
el plaga Messages postés 89 Date d'inscription jeudi 11 septembre 2008 Statut Membre Dernière intervention 14 janvier 2010 - 17 févr. 2009 à 10:09
A voir également:
- Easyphp
- Easyphp download - Télécharger - Divers Web & Internet
- Msvcr110.dll easyphp - Forum PHP
- Easyphp 5.3.9 - Forum Bases de données
- Easyphp ne fonctionne pas ✓ - Forum PHP
- Easyphp phpmyadmin ✓ - Forum PHP
1 réponse
el plaga
Messages postés
89
Date d'inscription
jeudi 11 septembre 2008
Statut
Membre
Dernière intervention
14 janvier 2010
4
17 févr. 2009 à 10:09
17 févr. 2009 à 10:09
essaie ce code
<body>
<?php
mysql_connect("localhost","root","*****");
mysql_select_db("jeux");
$nom=htmlentities($_POST['nom'], ENT_QUOTES);
$proprietaire=htmlentities($_POST['proprietaire'], ENT_QUOTES);
$console=htmlentities($_POST['console'], ENT_QUOTES);
$prix=htmlentities($_POST['prix'], ENT_QUOTES);;
$com=htmlentities($_POST['commentaire'], ENT_QUOTES);
//Sauvegarde dans la base
mysql_query("INSERT INTO jeux_video VALUES('','$nom','$proprietaire','$console','$prix','$com')");
mysql_close();
?>
</body>
<body>
<?php
mysql_connect("localhost","root","*****");
mysql_select_db("jeux");
$nom=htmlentities($_POST['nom'], ENT_QUOTES);
$proprietaire=htmlentities($_POST['proprietaire'], ENT_QUOTES);
$console=htmlentities($_POST['console'], ENT_QUOTES);
$prix=htmlentities($_POST['prix'], ENT_QUOTES);;
$com=htmlentities($_POST['commentaire'], ENT_QUOTES);
//Sauvegarde dans la base
mysql_query("INSERT INTO jeux_video VALUES('','$nom','$proprietaire','$console','$prix','$com')");
mysql_close();
?>
</body>