To learn how to use PHP,PDOand its methodsto connect to the 'college' database,to display results from an SQL statementon the web page, to populate a code example
Example: pdo example
<?php
$dsn = "mysql:host=localhost;dbname=mydb";
$user = "user12";
$passwd = "12user";
$pdo = new PDO($dsn, $user, $passwd);