+ 3
How do you integrate VB.net with python; how do you link to database with php.
linking database
2 odpowiedzi
0
To connect to a mysql database with php:
mysql_connect([Database host],[Username],[Password]);
To use a database after successful connection
mysql_select_db([Database name]);
To query the database
mysql_query([Insert your query string here]);
That's the basic stuff, read more on php from other sources, sololearn's php tutorial isn't detailed enough
0
Are you can this question explain simply ?