I am using mysql_fetch_assoc to retrieve and display an array; This is what I recieve upon loading the page:
Warning: mysql_fetch_assoc() expects parameter 1 to be resource
I have researched it and do not understand it.
**Snippet*
while ($row = mysql_fetch_assoc('$result')) {
echo $row["emp_name"];
echo $row["emp address"];
}
Thank you,
Matthew