Ayuda, tengo este error en la línea 108:
Código HTML:
Ver originalWarning: 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!