0
How do i link a database to a HTML code?
for example if I'm taking petitions or comments or poles, etc. How do I save the data collected into a database of some sort?
2 ответов
+ 2
mysql_connect( "localhost","USERNAME","PASSWORD") ; mysql_select_db("DBNAME");
in a php file or if in html then In the php embedded part
+ 1
Thank you Sami !