Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/09/2010, 08:25
abcdefg
 
Fecha de Ingreso: marzo-2009
Mensajes: 79
Antigüedad: 15 años, 8 meses
Puntos: 0
Exclamación Respuesta: problema con un codigo

Cita:
Iniciado por angelAparicio Ver Mensaje
¿Qué linea es la 102? He copiado el código y tiene 87 líneas solamente...
ya lo se, solo deje fuera el resto del codigo que es HTML, la 102 es esta
Código PHP:
Ver original
  1. $tecnico= mysql_fetch_array($almacena2);


pero si ayuda que no creo lo pongo completo:

Código PHP:
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Listado de partes</title>
    </head>
    <body  background="imagenes/cielo.jpg">

<?php
       
       
include 'menu.inc';

       
?>
        
        <br>
        <br>
        <br>
        <table border="1" align="center">
            <tr>
                <th colspan="5">
                     Listado de Partes
                </th>
            </tr>
            <tr>
                <th>
                    Nº Parte
                </th>
                <th>
                    Prioridad
                </th>
                <th>
                    ID_Tecnico
                </th>
                <th>
                   ID_Cliente
                </th>

                <th>
                   fecha_ini
                </th>

                <th>
                   fecha_fin
                </th>

                 <th>
                   caracteristicas
                </th>

                 <th>
                   modelo_equipo
                </th>

                 <th>
                   num_serie
                </th>

                 <th>
                   motivo_asistencia
                </th>

                <th>
                   descripcion_intervencion
                </th>

                <th>
                   observaciones
                </th>

                <th>
                   num_partes
                </th>

                <td>

                </td>
                  <td></td>

            </tr>
        <?php
        
        
//creamos la conexión
        
$conexion mysql_connect('localhost''root''');
        
//Conexión base de datos
        
mysql_select_db('mantenimiento'$conexion);
        
//Crea la  consulta
        
$consulta "SELECT prioridad, id_tecnico, id_cliente, fecha_ini, fecha_fin, caracteristicas, modelo_equipo, num_serie,    motivo_asistencia, descripcion_intervencion, observaciones, num_partes FROM partes";

        
//Almacenar
        
$almacena mysql_query($consulta$conexion);
       
        
//mostrar

        
while ($cosa mysql_fetch_array($almacena)){

        
$consulta2 "SELECT * FROM tecnicos WHERE id=".$cosa['id_tecnico'];
        
$almacena2 mysql_query($consulta2$conexion);
        
$tecnicomysql_fetch_array($almacena2);

        
$consulta3 "SELECT * FROM clientes WHERE id=".$cosa['id_cliente'];
        
$almacena3 mysql_query($consulta3$conexion);
        
$clientemysql_fetch_array($almacena3);

            echo 
"<tr>";
            echo 
"<td align='center'>";
            echo 
$cosa['num_partes'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['prioridad'];
            echo 
"</td>";

            echo 
"<td align='center'>";

            echo 
$tecnico['nombre'];
            echo 
"<td align='center'>";

            echo 
$cliente['nombre'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['fecha_ini'];
            echo 
"</td>";


            echo 
"<td align='center'>";
            echo 
$cosa['fecha_fin'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['caracteristicas'];
            echo 
"</td>";

             echo 
"<td align='center'>";
            echo 
$cosa['modelo_equipo'];
            echo 
"</td>";

             echo 
"<td align='center'>";
            echo 
$cosa['num_serie'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['motivo_asistencia'];
            echo 
"</td>";

             echo 
"<td align='center'>";
            echo 
$cosa['descripcion_intervencion'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['observaciones'];
            echo 
"</td>";

            echo 
"<td align='center'>";
            echo 
$cosa['num_partes'];
            echo 
"</td>";


            echo 
"<td align='center'>";
             echo 
"<a href='partesedid1.php?partes=".$cosa['num_partes']."'><img src='imagenes/editar.png' border='0'></a>";
            echo 
"<a href='partesbor.php?partes=".$cosa['num_partes']."'><img src='imagenes/borrar.png' border='0'></a>";
            echo 
"</td>";
            echo 
"</tr>";
            
             }
        
?>
        </table>

       <h1 style="text-align: center;">    <a href="index.php">Volver</a></h1>


    </body>
</html>