bigrock database connection string

Solutions on MaxInterview for bigrock database connection string by the best coders in the world

showing results for - "bigrock database connection string"
Monica
20 Nov 2016
1        <!--?
2	$connect=mysql_connect("dbserver","dbuser","dbpassword") or die("Unable to Connect");
3	mysql_select_db("dbname") or die("Could not open the db");
4	$showtablequery="SHOW TABLES FROM dbname";
5	$query_result=mysql_query($showtablequery);
6	while($showtablerow = mysql_fetch_array($query_result))
7	{
8	echo $showtablerow[0]." ";
9	} 
10	?-->