These all echo correctly but the query doesn't insert anything? it use to work and just broke.
echo $social_id;
echo $name;
echo $email;
echo $social_network;
echo $profile_pic;
mysql_query("INSERT INTO users (social_id, name, email, social_network, profile_pic)
VALUES ('$social_id', '$name','$email', '$social_network','$profile_pic')");
$user_id = mysql_insert_id();