| Aw: pda.php und BB Codes |
Betreff: Aw: pda.php und BB Codes von chris47803 am 06.01.2013 17:23:10 Hier noch der Code von der pda.php
<?php include "mainfile.php"; header("Content-Type: text/html"); echo "<html><head><title>". htmlspecialchars($xoopsConfig['sitename'])."</title> <meta name='HandheldFriendly' content='True' /> <meta name='PalmComputingPlatform' content='True' /> </head> <body>"; $sql = "SELECT storyid, title, hometext, bodytext FROM ".$xoopsDB->prefix("stories")." WHERE published>0 AND published<".time()." ORDER BY published DESC"; $result = $xoopsDB->query($sql,20,0); if (!$result) { echo "An error occured"; } else { echo "<h2>PersonalBit</h2>"; while (list($storyid, $title, $hometext, $bodytext) = $xoopsDB->fetchRow($result)) { echo "<b>". htmlspecialchars($title)."</b><br>". htmlspecialchars($hometext)."". htmlspecialchars($bodytext)."<br><br>"; } } echo "</body></html>"; ?>
|