First Draft
First Draft of the Example Files
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
require_once 'login.php';
|
||||
|
||||
try
|
||||
{
|
||||
$pdo = new PDO($attr, $user, $pass, $opts);
|
||||
}
|
||||
catch (\PDOException $e)
|
||||
{
|
||||
throw new \PDOException($e->getMessage(), (int)$e->getCode());
|
||||
}
|
||||
|
||||
$query = "DESCRIBE cats";
|
||||
$result = $pdo->query($query);
|
||||
|
||||
echo "<table><tr><th>Column</th><th>Type</th><th>Null</th><th>Key</th></tr>";
|
||||
|
||||
while ($row = $result->fetch(PDO::FETCH_NUM))
|
||||
{
|
||||
echo "<tr>";
|
||||
for ($k = 0 ; $k < 4 ; ++$k)
|
||||
echo "<td>" . htmlspecialchars($row[$k]) . "</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
|
||||
echo "</table>";
|
||||
?>
|
||||
Reference in New Issue
Block a user