iwa-panda1

Manage Weather Data by International Weather Agency (Version 1)
Log | Files | Refs

commit 46802e81dea940aa3a558b0aca229ff04b07f83c
parent eaf08129810935a9af3d3ca94a8fb05a1166e0a4
Author: Kninteman <[email protected]>
Date:   Tue,  4 Apr 2023 11:05:30 +0200

Validator Fix

Diffstat:
M.idea/php.xml | 2+-
MtestfileValidator.php | 7+++++++
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/.idea/php.xml b/.idea/php.xml @@ -10,7 +10,7 @@ <option name="highlightLevel" value="WARNING" /> <option name="transferred" value="true" /> </component> - <component name="PhpProjectSharedConfiguration" php_language_level="8.2" /> + <component name="PhpProjectSharedConfiguration" php_language_level="8.1" /> <component name="PhpStanOptionsConfiguration"> <option name="transferred" value="true" /> </component> diff --git a/testfileValidator.php b/testfileValidator.php @@ -1,4 +1,11 @@ <?php +// Server connection details +$servername = "86.92.67.21"; +$username = "friedel"; +$password = "hailiwa"; +$dbname = "wap2"; + +$db_connection = mysqli_connect($servername, $username, $password, $dbname); $redis = new Redis(); $redis->connect('127.0.0.1', 6379);