09-01-2011, 01:12 AM
Bonjours messieurs et les dames,
Je me suis inscrits sur le site pour avoir une aide.
Mon problème est le suivant:
Je n'arrive pas a instaler 2 base(2 table) dans la requete j'ai essayer tout les choses inémagiable pendant 5h .. sans succès.
Le problèmes est que Je veux aller chercher tout de ma table players vérifié le niveaux, la ville et vérifier dans la table test(la table des diplomaties du jeu) Si je joueur affiche son gang est dans la section type='allier' on affiche en vert le tag du gang , rouge ennemi et bleu pour pna(Pacte de non-agression).
Mais voila que il veux rien savoir de faire la requete dans la table test.
Je vous montres mon code et ou j'ai laisser .. je suis en se moment en train de virer fous AIDER MOI SVP !!.
et la structure de la table test
Field Type Collation Attributes Null Default Extra Action
id int(11) No None AUTO_INCREMENT
(Mon gang) TAG text latin1_general_ci No None
(Le type) type enum('allier','enemi','pna') latin1_general_ci No None
(enemy tag) enemy_id text latin1_general_ci No None
(mon id gang) idgang int(11) No None
(enemy id gang) enemyid int(11) No None
Je me suis inscrits sur le site pour avoir une aide.
Mon problème est le suivant:
Je n'arrive pas a instaler 2 base(2 table) dans la requete j'ai essayer tout les choses inémagiable pendant 5h .. sans succès.
Le problèmes est que Je veux aller chercher tout de ma table players vérifié le niveaux, la ville et vérifier dans la table test(la table des diplomaties du jeu) Si je joueur affiche son gang est dans la section type='allier' on affiche en vert le tag du gang , rouge ennemi et bleu pour pna(Pacte de non-agression).
Mais voila que il veux rien savoir de faire la requete dans la table test.
Je vous montres mon code et ou j'ai laisser .. je suis en se moment en train de virer fous AIDER MOI SVP !!.
<?php
include("templates/private_header.php");
echo "<div class=\"contenu\">
<div class=\"contenu_bloc\">
<h1>Infirmerie</h1>";
$query = $db->query("select `type`, `TAG`, `enemyid`, `enemy_id` from `test` where type='pna' and `enemy_id`=?", array($player->tag));
$test['at2'] = $query = $db->query("select `type`, `TAG`, `enemyid`, `enemy_id` from `test` where type='pna' and `enemy_id`=?", array($player->tag));
$query = $db->query("select `type`, `TAG`, `enemyid`, `enemy_id` from `test` where type='enemi' and `enemy_id`=?", array($player->tag));
$test['at3'] = $query = $db->query("select `type`, `TAG`, `enemyid`, `enemy_id` from `test` where type='enemi' and `enemy_id`=?", array($player->tag));
$query = $db->execute("select * from `players` where `level`=? ", array($player->level));
if ($query->recordcount() > 0)
{
echo "<table class=\"tableau\">\n";
echo "<tr><th width=\"20%\">Joueur</th><th width=\"15%\">Gang</th><th width=\"15%\">Contrat</th><th width=\"15%\">Attaque</a></th></tr><tr>\n";
echo "";
while ($log = $query->fetchrow())
{
if ($log['tag'] == $player->tag) {echo "<td width=\"20%\"><a href=gang_profile.php?id=" . $log['gang'] . "><font color=green>" . $log['tag'] . "</font></a></td>\n";}
elseif ($log['tag'] == $test['at2']) {echo "<td width=\"20%\"><a href=gang_profile.php?id=" . $log['gang'] . "><font color=blue>" . $log['tag'] . "</font></a></td>\n";}
elseif ($log['tag'] == $test['at3']) {echo "<td width=\"20%\"><p class=\"sm\"><a href=gang_profile.php?id=" . $log['gang'] . "><font color=red>" . $log['tag'] . "</p></font></a></td>\n";}
elseif ($log['tag'] == $test->de3) {echo "<td width=\"20%\"><a href=gang_profile.php?id=" . $log['gang'] . "><font color=red>" . $log['tag'] . "</font></a></td>\n";}
elseif ($log['gang'] == 0) {echo "<td width=\"10%\">Sans</td>\n";}
else {echo "<td width=\"10%\"> <a href=gang_profile.php?id=" . $log['gang'] . ">" . $log['tag'] . "</a></td>\n"; }
echo "<td width=\"20%\"><p class=\"sm\"><a href=\"profile.php?id=" . $log['username'] . "\">" . $log['username'] . "</a></p></td>\n";
echo "<td width=\"15%\">" . numberformat($log['contrat'],0,'.',' ',3) . "</td>\n";
echo "<td width=\"15%\"><a href=\"battle2.php?act=attack&username=" . $log['username'] . "\">Attaquer</a></td></tr>\n";
}
}
else //Display error message
{
echo "<tr>\n";
echo "<td colspan=\"3\">Pas de joueur trouver. Change les critères !</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
include("templates/private_footer.php");
break;
}
}
else {
include("templates/private_header1.php");
echo "Tu ne peux pas aller ici !<br />";
echo "Sois tu es cacher, sois tu es dans une autres citer ou en prison !";
include("templates/private_footer.php");}
?>
et la structure de la table test
Field Type Collation Attributes Null Default Extra Action
id int(11) No None AUTO_INCREMENT
(Mon gang) TAG text latin1_general_ci No None
(Le type) type enum('allier','enemi','pna') latin1_general_ci No None
(enemy tag) enemy_id text latin1_general_ci No None
(mon id gang) idgang int(11) No None
(enemy id gang) enemyid int(11) No None