I run this query
$result1 = mysql_query("SELECT * FROM 'departments'");
while($row1 = mysql_fetch_assoc($result1))
{
$depts = array("Name" => $row1['Name'], "Value" => $row1['Value'], "ID" => $row['CollegeID']);
}
with three other simple queries, one loads data into profile text boxes, and another loads a drop down. Is something wrong with my Query here or my PHP code that could be causing this. It only returns about 51 records. Do you think it could be the server the MySQL server is running on a 2008 Windows Server.
Maybe you have many columns in departments table. Try this: