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

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: yigido
  5. * Date: 6/23/18
  6. * Time: 5:20 PM
  7. */
  8. $db_name = "Products";
  9. $mysql_username = "root";
  10. $mysql_password = "12345";
  11. $server_name = "localhost";
  12. $conn = mysqli_connect($server_name, $mysql_username, $mysql_password,$db_name);
  13. ?>