I'm trying to make a simple login page with MySQL but been having problem linking. I'm using xampp and eclipse as my php development tool. My database name is 'arc' with the table 'login'.
Am I missing something?
I'm trying to make a simple login page with MySQL but been having problem linking. I'm using xampp and eclipse as my php development tool. My database name is 'arc' with the table 'login'.
Am I missing something?
According to php docs mysql_real_escape_string extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0.
You should check mysqli instead.