I know there are many other threads about this same error, but none have helpped me, here is my code:
<?php
$mysql_id = mysql_connect('mysql3.000webhost.com', 'a2778852_556875', 'pendolino390');
mysql_select_db('a2778852_555676', $mysql_id);
$result = mysql_query("SELECT personalexperience, sex, age, sexuality, FROM Personal_experience");
while($row = mysql_fetch_array($result))
{
echo $row['personalexperience'], $row['sex'], $row['age'], $row['sexuality'];
}
mysql_close($mysql_id);
?>
Any help will be much appreciated, thanks.