yes, and for clarification the table is not empty,
just for update sakes the script look slike this now
<?php
include 'conn.php';
$sql = "SELECT * FROM test ORDER BY fname ASC LIMIT 0 , 15";
$result = mysql_query($sql) or die(mysql_error());
while ($row = mysql_fetch_row($result)) {
//creates loop and loads each row of the table into the array called: $row
//set the value of each field into a variable
$fname = $row['fname'];
$lname = $row['lname'];
$major = $row['major'];
$year = $row['year'];
$address = $row['address'];
$phone = $row['phone'];
$number = $row['number']
$email = $row['email'];
$big = $row['big'];
$little = $row['little'];
$lttle2 = $row['little2'];
echo ($fname,$lname,$major,$year,$address,$phone,$number,$email,$big,$little2\n\n);
}
?>