Facebook Registration Connect

倖福魔咒の 提交于 2019-11-29 17:38:33

ceejayoz fixed the issue, echoing echo mysql_error(); solves the issue as it tells you ALL the mysql problems you have. To fix the gender issue which was I needed to shorten it from Male to "M" or Female to "F" just use PHP's substr so example is...

$gender = substr("$fbgender", -4, 1);

Thanks everyone who helped, -Brad

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!