0
How to connect the php with mysql
I wrote a program on sublime text and i wanna run it on wampserver. For that how can connect with its database. I wrote a program on register login form
3 Respostas
+ 3
MySQL is deprecated in PHP5 and removed from PHP7. Please use mysqli
0
<?php
$con=mysql_connect("localhost","user_name","password") or die("Could not connect "+mysql_error());
$d=mydql_select_db("database_name",$con);
mysql_query("query...");
?>
0
try this one
<?php
$connection = mysqli_connect('localhost', 'username', 'password', 'database');
mysqli_query($connection, 'CREATE TEMPORARY TABLE `table`');
?>