Ok what I am trying to do is submit changes. I have all the information being collected. I'm just having trouble with the proper query to run.
I currently have:
$sql = "UPDATE anime_list SET anime_name = '$animename' rating = '$rating' episodes = '$episodes' WHERE id='$id'";
$result = mysqli_query($dbc, $sql)
or die('Error Submitting Series Changes');
It always stops at the error message I have set.
also I am using if isset to grab the variable values from a javascript function.