Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/11/2014, 14:01
Juanjo_pol
 
Fecha de Ingreso: octubre-2014
Mensajes: 14
Antigüedad: 10 años, 4 meses
Puntos: 1
Respuesta: Actualización código php

Creo haber solucionado casi todos los problemas, ahora me queda este:
Fatal error: Call to undefined function getParam() in /homepages/1/d.........../htdocs/COPIAWEB/ORDRE/editar.php on line 14

La línea 14 es esta:
Código PHP:
$idempresa getParam($_GET["id"], "-1"); 
Y creo que el problema viene de este formulario:
Código PHP:
 <?php while ($rsEmp mysqli_fetch_assoc($queEmp)) { ?>
  
  <tr>
    <td><?php echo $rsEmp['id']; ?></td>
    <td><?php echo $rsEmp['data']; ?></td>
    <td><?php echo $rsEmp['torn']; ?></td>
    <td><a href="editar.php?id=<?php echo $rsEmp['id']; ?>">Introduïr Resultat del Servei</a></td>
  </tr>
  <?php ?>