Database
Basic PHP PDO database wrapper., (*1)
Example
Initializing the class
Init the class and fetch some DB records, (*2)
executeSelectQueryAndFetchAll($sql, $params);
?>
Output the results
Output them in HTML, for instance:, (*3)
<ul>
<?php foreach($results as $result): ?>
<li><?=$result->column;?></li>
<?php endforeach;?>
</ul>
Database not included. (:)) Examples provided for example use only., (*4)
MIT Licence, (*5)
© Mattias Olsson 2015, (*6)