Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/08/2012, 08:45
hernan2212
 
Fecha de Ingreso: marzo-2012
Ubicación: Rosario
Mensajes: 108
Antigüedad: 12 años, 9 meses
Puntos: 0
Pregunta javascript dentro de un while php

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

Última edición por hernan2212; 31/08/2012 a las 08:50 Razón: mejor formato