6
Im not exactly sure how to attempt either of those so perhaps i could get you to explain what i need to change in the PDA page for the iPhone page.
What do i need to change below so it will display the latest 20 forum posts?
le="color: #000000"><?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 FROM ".$xoopsDB->prefix("stories")." WHERE published>0 AND published<".time()." ORDER BY published DESC"; $result = $xoopsDB->query($sql,10,0); if (!$result) { echo "An error occured"; } else { echo "<img src='images/logo.gif' alt='".htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES)."' border='0' /><br />"; echo "<h2>".htmlspecialchars($xoopsConfig['slogan'])."</h2>"; echo "<div>"; while (list($storyid, $title) = $xoopsDB->fetchRow($result)) { echo "<a href='".XOOPS_URL."/modules/news/print.php?storyid=$storyid'>".htmlspecialchars($title)."</a><br />"; } echo "</div>"; } echo "</body></html>"; ?>
I ALSO tried to copy index.php and added the code sugested to my theme but it just loads like a normal front page. Not sure what i'm doing wrong with that one either.
My page is
http://www.metatrox.net if this help you guys out any.