ohctech_p8/mysql_connection.php
Dushant Mali 899fb3e65a Upgrade 7 to 8
Upgrade 7 to 8
2024-11-02 18:03:13 +05:30

16 lines
387 B
PHP

<?php
$mysqli = mysqli_connect('119.18.63.96', 'railtech_tender', 'tender@');
/* Test the mysqli connection */
if (mysqli_connect_errno()) {
printf("Connection failed: %s\n", mysqli_connect_error());
die();
}
/* Print the mysqli server version */
printf("mysqli server version: %s\n", mysqli_get_server_info($mysqli));
/* Close the mysqli connection */
mysqli_close($mysqli);
?>