User Tools

Site Tools


2018-04-06

This is an old revision of the document!


<?php 
error_reporting(-1);
ini_set('display_errors', 1);

$host = "localhost";
$username = "coding_user";
$password = "cheese";
$db_name = "coding"; 

$mysql_string = "mysql:host=$host;dbname=$db_name";

$db_connection = new PDO($mysql_string, $username, $password);

$sql = "select * from test_table order by surname desc";
$rs = $db_connection->query($sql);
$rows = $rs->fetchAll(PDO::FETCH_ASSOC);

echo "<ol>"; 
foreach($rows as $row) {
        echo "<li>";
        echo $row['surname'].", ".$row['forename'];
        echo " (".date("D jS M Y", strtotime($row['date_added']));
        echo ")";
        echo "</li>";
}
echo "</ol>";

?>

LDAP: couldn't connect to LDAP server
2018-04-06.1554562606.txt.gz · Last modified: 2019/04/06 15:56 by nmckillop