Tema: Como Validar
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/04/2009, 09:35
Avatar de rafyky86
rafyky86
 
Fecha de Ingreso: abril-2009
Ubicación: monterrey
Mensajes: 81
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: Como Validar

esque yo tengo este codigo<?php
include('conexion.php');
$sql="SELECT * FROM jea_500_cp ORDER BY serie asc";
$src=mysql_query($sql,$conexion) or die ("<font color=red>No se puedo realizar la sentencia</font><br>".mysql_error());
echo "<center ".$tit."><h2>Catalogo De Dispensarios Jea 500 CP</h2><br>
<br>
<table align=center cellspacing=0 cellpadding=3>
<tr ".$tituloparatablas.">
<td colspan=2 align=center ".$fondo02."> OPERACIONES </td>
<td align=center ".$fondo02."> SERIE </td>
<td align=center ".$fondo02."> NOMBRE DEL CLIENTE</td>
<td align=center ".$fondo02."> MODELO </td>
<td align=center ".$fondo02."> ID </td>
<td align=center ".$fondo02."> FECHA </td>
<td align=center ".$fondo02."> ESTATUS </td>
<td align=center ".$fondo02."> FOLIO </td>
</tr>";
while($data=mysql_fetch_array($src)){
echo "<tr ".$letrasparatablas."><td align=center><a href='borrarDispJeacp.php?id=$data[0]'><img src=borra.gif widht=20 height=20 alt='Borrar Articulo'></a></td>";
echo "<td align=center><a href='formModifiDispJeacp.php?id=$data[0]'><img src=modifica.gif widht=20 height=20 alt='Modificar'></a></td>";
echo "<td align=center>".$data[3]."</td>";
echo "<td align=center>".$data[1]."</td>";
echo "<td align=center>".$data[2]."</td>";
echo "<td align=center>".$data[0]."</td>";
echo "<td align=center>".$data[4]."</td>";
echo "<td align=center>".$data[5]."</td>";
echo "<td align=center>".$data[6]."</td>";

echo "</tr>";
}
echo "</table>";

mysql_close($conexion);

y luego este manda a

Última edición por rafyky86; 18/04/2009 a las 11:14