*** I have the following PHP file to connect to a database in MySQL:
Connection.php
<?php
$Link = 'mysql:host=localhost;dbname=yt_colores';
$Usuario = 'root';
$Password = 'root';
try{
$PDO = new PDO($Link, $Usuario, $Password);
} catch...
asked by
26.07.2018 / 19:15