Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/11/2013, 13:39
Fozz
 
Fecha de Ingreso: noviembre-2013
Ubicación: México
Mensajes: 94
Antigüedad: 10 años, 5 meses
Puntos: 1
Warning: sqlsrv_fetch_array() expects parameter 1 to be resource, string given in

Ayuda, tengo este error en la línea 108:

Código HTML:
Ver original
  1. Warning: sqlsrv_fetch_array() expects parameter 1 to be resource, string given in C:\wamp\www\pruebas\buscador\buscador.php on line 108

mi línea 108 inicia aquí:

Código PHP:
while($f=sqlsrv_fetch_array($busqueda))
{
 
$concatenar=$row['Titulo_prof']. " ".$row['Nombre_completo'];
 
echo 
'<tr>';
echo 
'<td width="19">'.$f['Id_persona'].'</td>';
echo 
'<td width="61">'.$concatenar.'</td>';
echo 
'<td width="19">'.$f['Cargo'].'</td>';
echo 
'<td width="157">'.$f['Nombre'].'</td>';
echo 
'<td width="221">'.$f['Tipo'].'</td>';
echo 
'<td width="176">'.$f['Telefono'].'</td>';
echo 
'<td width="73">'.$f['Extension'].'</td>';


alguien que me asesore por favor!! gracias!