Sat, June 10, 2023
https://devcodepro.comdevcodepro
Home · Latest · Trends
1

ADODB check if MySQL connected

<?php
include ('classes/adodb.inc.php');
$dbdriver = 'mysqli';
$server = 'localhost';
$user = 'root';
$password = 'testpass';
$database = 'dbname';
$conn = ADONewConnection($dbdriver);
$conn->Connect($server, $user, $password, $database);
if (!$conn->isConnected()):
  echo 'No Connected';
  die();
else:
  echo 'Connected';
endif;
?>
AD ยท www.interserver.net/r/240055 

Interserver | Standard & VPS Cloud Hosting | $2.50 /Month

Flexible VPS hosting platform to deploy your online projects. Economical and balanced between processor cores, memory and storage
rated 1 times (1) (0)
comments: 0 / hits: 564  / 2 years ago, sat, may 1, 21, 05:53:49
More From » PHP
 

Comments

There are no comments for this Snippet yet
Only authorized users can post. Please sign in first, or register a free account
Login with Google
 
Share
Posted
go
Member since May 1, 2021
Total Code Snippets: 2
Total Comments: 0
Location: n/a
go snippets
2 years ago, sun, may 2, 21, 3:34:47
$id = join(',',$val); ##replace with if (!empty($val)) { $id = join(',', $val); }else{ $id = join(',', array_filter(array(@$val))); }
comments: 1 / hits: 2567
PHP