Update database connection details and add scripts for image URL updates and downloads

This commit is contained in:
vista-man
2025-03-25 12:29:38 +01:00
parent 326e4da1cb
commit 837d2cc8b5
1013 changed files with 77 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
<?php
$servername = "localhost:3306";
$username = "database1";
$password = "181t$1lJg";
$dbname = "pokedex1";
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "pokedex";
$conn = new mysqli($servername, $username, $password, $dbname);