I have a program that I want to use a view with. The code I'm using is: $v="select * from peoplecontact".$where." order by ci_city";
The select statement seems to work fine. It returns the correct number of rows. Now, how to I use it (see $entername)?
$v="select * from peoplecontact".$where." order by ci_city";
$num_rows = mysql_affected_rows();
$entername=$v['PD_Lname']." ".$v['PD_Fname']; //doesn't work
mysql_fetch_array($v) doesn't work either.
Can anyone help with this?
TIA,
Dick Deeds