mirror of
https://github.com/Alvin-Zilverstand/pokedex.git
synced 2026-03-06 11:07:31 +01:00
Update database connection details for Pokémon data retrieval
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
$servername = "localhost";
|
$servername = "localhost:3306";
|
||||||
$username = "root";
|
$username = "database1";
|
||||||
$password = "";
|
$password = "181t$1lJg";
|
||||||
$dbname = "pokedex";
|
$dbname = "pokedex1";
|
||||||
|
|
||||||
$conn = new mysqli($servername, $username, $password, $dbname);
|
$conn = new mysqli($servername, $username, $password, $dbname);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user