You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
276 B

<?php
/**
* Created by PhpStorm.
* User: yigido
* Date: 6/23/18
* Time: 5:20 PM
*/
$db_name = "Products";
$mysql_username = "root";
$mysql_password = "12345";
$server_name = "localhost";
$conn = mysqli_connect($server_name, $mysql_username, $mysql_password,$db_name);
?>