Check user used MySQL/PHP
Résolu/Fermé
A voir également:
- Check user used MySQL/PHP
- Check disk - Guide
- Easy php - Télécharger - Divers Web & Internet
- Cd check - Télécharger - Récupération de données
- Mysql community server - Télécharger - Bases de données
- Check flash - Télécharger - Sécurité
2 réponses
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
26 janv. 2018 à 09:19
26 janv. 2018 à 09:19
Bonjour,
Tu utilises quoi pour te connecter à ta BDD ?
Car je vois :
Et juste après ça :
ça n'est pas cohérent...
De plus .. ta question concernant le PHP je la déplace dans le bon forum.
merci d'y faire attention à l'avenir !
Tu utilises quoi pour te connecter à ta BDD ?
Car je vois :
checkname = $dbc->query("SELECT * FROM {$cfg_prefix}players_stats WHERE Name = '".$Name."'");
Et juste après ça :
if(mysql_num_rows
ça n'est pas cohérent...
De plus .. ta question concernant le PHP je la déplace dans le bon forum.
merci d'y faire attention à l'avenir !
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
26 janv. 2018 à 23:09
26 janv. 2018 à 23:09
Voilà ce qu'il me marque
Voici la ligne 78 du code que j'ai envoyer en haut
Et la ligne 68
Notice: Undefined index: avatar in /var/www/html/devsite22/login.php on line 68
Fatal error: Uncaught Error: Call to undefined method PDO::num_rows() in /var/www/html/devsite22/login.php:78 Stack trace: #0 {main} thrown in /var/www/html/devsite22/login.php on line 78
Voici la ligne 78 du code que j'ai envoyer en haut
if($dbc->num_rows($checkname) == 1)
Et la ligne 68
$avatar = htmlentities($_POST['avatar']);
Haaa j'ai réussi, merci à toi Jordan. Effectivement j'ai été voir sur internet num_rows ne marche pas en méthode PDO. Voici la correction.
<?php
if(isset($_POST['inscription'])) {
$Name = htmlentities($_POST['Name']);
$Password = md5($_POST['Password']);
$avatar = htmlentities($_POST['avatar']);
$Registered = strtotime(date('Y-m-d H:i:s'));
$Sex = htmlentities($_POST['Sex']);
$Steam = htmlentities($_POST['Steam']);
$Twitch = htmlentities($_POST['Twitch']);
$Age = htmlentities($_POST['Age']);
$Email = htmlentities($_POST['Email']);
$checkname = $dbc->query("SELECT * FROM {$cfg_prefix}players_stats WHERE Name = '".$Name."'");
$checkuser = $checkname->rowCount();
if($checkuser == 1)
{
echo "<h1>Error</h1>";
echo "<p>Sorry, that username is taken. Please go back and try again.</p>";
}
else
{
if(!empty($Name) || !empty($Password) || !empty($Email) || !empty($Age) || !empty($Sex)) {
$rq_add = $dbc->prepare("INSERT INTO srp_players_stats VALUES('', ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$rq_add->execute(array($Name, $Password, 0, 0, 0, 0, $Registered, $Sex, $Steam, $Twitch, $Age, $Email));
echo '<div class="green_box"><i class="fa fa-check" style="margin-right:6px;"></i> Votre compte a été crée avec succès, vous pouvez maintenant vous connecter. Bienvenue sur Everyseries !</div>';
} else {
echo '<div class="red_box"><i class="fa fa-warning" style="margin-right:6px;"></i> Veuillez remplir tous les champs du formulaire.</div>';
}
}
}
?>
26 janv. 2018 à 21:07
26 janv. 2018 à 23:06