+ 4
Linking php with sql
Who can teach me how to link an html with php form with sql database
3 Answers
+ 4
You can get started from this site, it's beginner friendly and has pretty good examples.
http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers
+ 4
mysqli_connect(ServerIP, Username, Password, DBname);
+ 4
Thanks guys