Hola, como estan? tengo un problema con un codigo java dentro de un while php, uso para pedir mas informacion de un producto un link que me abre una ventana de contacto, el problema es que siempre me selecciona el primer producto dentro de la lista.
Aca va el codigo
<?php do { ?>
<tr>
<td height="38" align="left" valign="top" class="up-sell-entry_title"><strong><em><? echo $row_productos['nombre']; ?></em></strong></td>
</tr>
<tr>
<td height="46" align="left" valign="top"><? echo $row_productos['importe']; ?></td>
</tr>
<tr align="center">
<td align="right">
<!-- contenido página -->
<p><a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='b lock';document.getElementById('fade').style.displa y='block'">+ informacion</a> </p>
<div id="fade" onclick = "document.getElementById('light').style.display='n one';document.getElementById('fade').style.display ='none'"></div>
<!-- fin base semi-transparente -->
<!-- ventana modal -->
<div id="light" class="modal">
<p><form method="post" action="envio.php" id="fo3" name="fo3" >
<fieldset>
<strong>
<legend class="sup-directionsBH">Pedir más información por <? echo $row_productos['nombre'];?></legend>
</strong> <strong><br />
</strong>
<ol>
<li><strong>
<label>Nombre:</label>
<input name="fnombre" type="text" value="" size="39" />
</strong></li>
<li><strong>
<input type="hidden" value="<? echo $row_productos['nombre'];?>" name="fproducto" />
</strong></li>
<li><strong>
<label>Correo:</label>
<input type="text" size="39" name="fmail" />
</strong></li>
<li><strong>
<label for="consulta">Consulta:</label><textarea name="fconsulta" id="consulta" cols="30" rows="5"></textarea>
</strong></li>
</ol>
<strong>
<input type="submit" name="mysubmit" value="Enviar" />
</strong>
</fieldset>
</form>
<strong>
<div id="result"></div>
</strong>
</p>
<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='n one';document.getElementById('fade').style.display ='none'">cerrar</a>
</div>
<!-- fin ventana modal -->
</td>
</tr>
<?php } while ($row_productos = mysql_fetch_assoc($productos)); ?>
Muchas gracias de antemano
Saludos