Focus mode
try {
$host = 'localhost';
$dbname = 'your';
$username = 'root';
$password = 'root';
$db = new PDO("mysql:host=$host;dbname=$dbname;charset=utf8", "$username", "$password");
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
//$db->query('USE your');
$db->query("SET CHARACTER SET utf8mb4");
$db->query("SET CHARACTER_SET_CONNECTION=utf8mb4");
$db->query("SET @@lc_time_names = 'tr_TR'");
} catch ( PDOException $e ){
print $e->getMessage();
}
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!