I am getting this PHP error, what does it mean?
Notice: Undefined offset: 0 in C:\\xampp\\htdocs\\mywebsite\\reddit_vote_tut\\src\\votes.php on line 41
If you leave out the brackets then PHP will assign the keys by default.
Try this:
$votes = $row['votes_up']; $votes = $row['votes_down'];