x4rl
Well-known member
Am trying to add a php file into a template
With an Iframe I can't get an CSS to work :C unless am doing it wrong?
Anyone any better ideas?
Thanks
PHP:
<?php
$cdb = new PDO('mysql:dbname=blah;host=localhost', 'blah', 'blah');
foreach ($cdb->query("SELECT * FROM images ORDER BY posted DESC LIMIT 5") AS $img)
{
echo '<div class="highlighted">
<a style="position: relative; display: block; height: 127px; width: 170px;" href="/booru/post/view/' . $img['id'] . '">
<img src="booru/_thumbs/' . $img['hash'] . ' " />
</a>
</div>';
}
With an Iframe I can't get an CSS to work :C unless am doing it wrong?
Anyone any better ideas?
Thanks