Variable popup avec condition

Fermé
nox - 16 janv. 2008 à 15:16
bbar Messages postés 436 Date d'inscription mercredi 27 septembre 2006 Statut Membre Dernière intervention 31 octobre 2008 - 16 janv. 2008 à 16:25
Bonjour,
j'ai besoin d'aide.
j'ai un fichier p1.php qui affiche l'identité par categorie.
L'affichage contient aussi un boutton voir (en popup) qui affichera tous les elements concernants
cette identié.
Le problème c'est que le 2èm fichier qui est popup n'arrive pas à prendre l'identité.

voici le 1er fichier:
...
$r=mysql_db_query("base",'select date,id_dmd,count(id_dmd),responsable from demande group by id_dmd ');

while($sol=mysql_fetch_array($r))
{ $da=$sol[0];
$id=$sol[1];
$qt=$sol[2];
$rp=$sol[3];
?>
<tr><td align="center"><font size="-1"><? echo $da?></font></td>
<td align="center"><font size="-1"><? echo $id?></font></td>
<td align="center"><font size="-1"><? echo $qt?></font></td>
<td align="center"><font size="-1"><? echo $rp?></font></td>
<?
$x=$id;
echo "<form name=f1 method=get>";
echo "<input type=hidden name=t1 value=$x>";
echo "</form>";
echo "<td><center> <input type=submit value=voir onClick=miseho()></center></td>";
echo "</tr>";
}
?> </table> <?
}
...

et mon 2nd fichier qui est popup


<?php
$v=$_GET['x'];
mysql_connect("localhost","root","")or die("apache abs");
mysql_select_db("base")or die("base abs");
$r=mysql_db_query("base",'select date,id_dmd,nomenclature,designation,quantite from demande where id_dmd= UCASE("'.$v.'")' );
...
?>

ou bien c'est ma requête WHERE qui est fausse?

Aidez-moi!!
A voir également:

1 réponse

bbar Messages postés 436 Date d'inscription mercredi 27 septembre 2006 Statut Membre Dernière intervention 31 octobre 2008 140
16 janv. 2008 à 16:25
salut,

echo "<input type=hidden name=t1 value=$x>";
------
$v=$_GET['x']; 


je pense qu'il est là ton pb : ton champ hidden s'appelle 't1' mais qd tu fais ton get, tu cherches une variable appelée 'x'.

$v=$_GET['t1'];


en modifiant ton deuxième fichier comme ci dessus, ça devrait mieux fonctionner
0