nombre | cedula | boton |
________________________________|
juan perez| 12345 | boton |
-------------------------------------|
maria marti| 23443 | boton |
-------------------------------------|
carlos gonz| 34345 | boton |
-------------------------------------|
jaime herna| 34563 | boton |
-------------------------------------|
entonces la idea es que cuando yo le de click a cada un boton me envie un post y me guarde este datos en otra tabla de la base de datos ejemplo si le doy click al boton de juan perez este mismo nombre me guarde en otra tabla lo que nohe sido capaz esde cargar la variable pss una vez se haga como ejemplo $nombre ya es mas facil de hacer un insert espero sus rtas gracias de antemano
Código PHP:
<?
// Configura tu conexion
$db=mysql_connect('localhost', 'root', '123456');
mysql_select_db("salud", $db);
// obtengo puntero de conexion con la db
if(!empty($_POST['enviar'])){
//definicion de variables
if(!empty($_POST['numorden'])) $numoreden = $_POST['numorden'];
}
// vemos si el usuario quiere desloguar
if ( !empty($_GET['salir']) ) {
// borramos y destruimos todo tipo de sesion del usuario
session_unset();
session_destroy();
}
// verificamos que no este conectado el usuario
// Mostrar reporte de base de datos
$cod = $arrUsuario['cdgempresa'];
$nivel = $arrUsuario['nivel'];
if ($nivel == 'admin' or 'medico') {
$sql ="select group_concat(ex.nbrexamen),substring(o.numorden,length(o.numorden)-7),substring(o.numorden,-13,5),o.cdgempresabenef, u.primernbr, u.inicialsegnbr, u.primerapell, u.inicialsegapell, h.numidentificacion, h.numorden, o.numorden, e.nbrempresa, ap.nbraptitudlaboral, h.fechaaptitud
from usuario u,historia h, orden o, empresa e,aptitudlaboral ap,registro r,examen ex
where h.tipoidentificacion=u.tipoidentificacion
and h.numidentificacion=u.numidentificacion
and h.numorden=o.numorden
and h.id_aptitudlaboral=ap.id_aptitudlaboral
and o.cdgempresabenef=e.cdgempresa
and o.numorden=r.numorden
and r.cdgexamen=ex.cdgexamen
and substring(o.numorden,length(o.numorden)-7)='20110427'
group by r.numorden
order by substring(o.numorden,length(o.numorden)-7) desc;";
}
//and h.id_aptitudlaboral = '00'
//and h.id_aptitudlaboral=ap.id_aptitudlaboral
$reportes = mysql_query ($sql);
//echo "<script>alert ('$nivel')</script>";
//echo "$sql";
//consulta concepto
//echo "$num_registros";
echo "$prueba";
//$num_registros = mysql_fetch_array($reportes);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Aplicatico Web</title>
<style type="text/css">
<!--
.Estilo2 {
font-size: 18px;
font-weight: bold;
}
.Estilo6 {
color: #FFFFFF;
font-weight: bold;
text-align: center;
}
-->
</style>
</head>
<body>
<h1 align="center"> </h1>
<table width="100%" border="0">
<tr>
<td width="8%"> </td>
<td width="7%"><p> </p></td>
<td width="67%"><p align="right"> </p></td>
<td width="18%" valign="top"><p align="left"><span class="Estilo2">Bienvenido</span> </p></td>
</tr>
</table>
<form action="../turnero/controlmedico.php" method="post">
<table width="100%" border="0">
<tr>
<td height="56"> </td>
<td width="950px" valign="top"><table width="100%" border="1" align="center">
<tr>
<td bgcolor="#0096FF" width="35%"><div align="center" class="Estilo6">Nombre Paciente</div></td>
<td width="10%" bgcolor="#0096FF"><div align="center" class="Estilo6">Cedula</div></td>
<td bgcolor="#0096FF"><div align="center" class="Estilo6">Enfermeria</div></td>
</tr>
<?
while ($fila=mysql_fetch_array($reportes))
{
?>
<tr>
<td height="28"><div align="center"><? echo $primernbr = $fila["primernbr"].' '.$fila["inicialsegnbr"].' '.$fila["primerapell"].' '.$fila["inicialsegapell"];
?></div></td>
<td><div align="center"><? echo $fila["numidentificacion"];?></div></td>
<td><div align="center"><? $prueba = $numorden = $fila["numorden"];?>
<? if ( ! empty($prueba) ) echo $prueba; ?>
<input type="submit" name="enviar" id="llamar" value="llamar" />
</tr>
<?
}
?>
</table>
</td>
<td> </td>
</tr>
</table>
</form>
<p align="center">
</p>
<p> </p>
<p>
</p>
<p> </p>
</body>
</html>