[PHP] RE: Problems with a simple While-If condition With the statement

2002-11-26 Thread Rodrigo de Oliveira
" ?> Nenhum profissional cadastrado."; } ?> ID Profissional"; echo"".$row['id'].""; echo"Nome"; echo"".$row['nome'].""; echo"Profissão"; echo"".$row['area'].""; echo"Bairro"; echo"".$row['bairro'].""; echo"Telefone"; echo"".$row['telefone'].""; echo"E-mail"; echo"".$row['email'].""; echo

[PHP] Re: Problems with a simple While-If condition

2002-11-26 Thread Jason Romero
try using the extract command instead of the array reference ie: ID Profissional"; echo"$id"; ?> instead of : while ($row = mysql_fetch_array($res)) { ?> ID Profissional"; echo"".$row['id'].""; Jason "Rodrigo De Oliveira" <[EMAIL PROTECTED]> wrote in message 002501c295a6$3e048ab0$6ed4a5c8@soh