Saludos y gracias
Código PHP:
Ver original
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="viewport" content="width=device-width"> <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" > <body> <?php //Variables de conexion $dbhost = "localhost"; $dbuser = "root"; $dbpassword = ""; $dbname = "automatizacion"; $db = mysql_connect($dbhost, $dbuser, $dbpassword) or die("Connection Error: " . mysql_error()); mysql_select_db($dbname) or die("Error al conectar a la base de datos."); //MOSTRAMOS TODAS LAS TABLAS $sql = "SELECT * FROM `respaldoSeguimientoVulnerabilidad` "; $numero = 0; echo "<table border='1' width='' heigth=''>"; echo "<tr><td colspan=20><center>TABLA DE Comparativo</center></td> </tr>"; echo " <tr> <td>Id</td> <td>Origen</td> <td>Sistema Afectado /IP</td> <td>Código</td> <td>Nombre</td> <td>Detalle debilidad</td> <td>Impacto</td> <td>Recomendación</td> <td>Tipo (APP-SInfraestructura)</td> <td>Criticidad (A-M-B)</td> <td>Exposición</td> <td>Área</td> <td>Responsable</td> <td>Fecha Inicio</td> <td>Periodo</td> <td>Plazo(semanas)</td> <td>Fecha de Cierre</td> <td>Estado</td> <td>Acciones</td> <td>Comentario</td> <td>Nuevo Estado</td> </tr>"; //MOSTRAMOS LA INFORMACION DE LOS CAMPOS { print ('<tr>'); echo ('<td width="2%">'.$Rs2['ID'].'</td>'); echo ('<td width=8%">'.$Rs2['Origen'].'</td>'); echo ('<td width="3%">'.$Rs2['Sistema Afectado / IP'].'</td>'); echo ('<td width="3%">'.$Rs2['Codigo'].'</td>'); echo ('<td width="5%">'.$Rs2['Nombre'].'</td>'); echo ('<td width="1%">'.$Rs2['Detalle debilidad'].'</td>'); echo ('<td width="3%">'.$Rs2['Impacto'].'</td>'); echo ('<td width="5%">'.$Rs2['Recomendacion'].'</td>'); echo ('<td width="5%">'.$Rs2['Tipo (APP-SInfraestrcutura)'].'</td>'); echo ('<td width="5%">'.$Rs2['Criticidad (A-M-B)'].'</td>'); echo ('<td width="5%">'.$Rs2['Exposicion'].'</td>'); echo ('<td width="5%">'.$Rs2['Area'].'</td>'); echo ('<td width="5%">'.$Rs2['Responsable'].'</td>'); echo ('<td width="5%">'.$Rs2['Fecha de inicio'].'</td>'); echo ('<td width="5%">'.$Rs2['Periodo'].'</td>'); echo ('<td width="5%">'.$Rs2['Plazo (semanas)'].'</td>'); echo ('<td width="5%">'.$Rs2['Fecha de cierre'].'</td>'); echo ('<td width="5%">'.$Rs2['Estado'].'</td>'); echo ('<td width="5%">'.$Rs2['Acciones'].'</td>'); echo ('<td width="5%">'.$Rs2['Comentarios'].'</td>'); echo ('<td width="5%">'.$Rs2['NUEVO ESTADO'].'</td>'); echo ('</tr>'); $numero++; } echo "</table>"; ?> </body> </html>