brazza Posted August 27, 2003 Share Posted August 27, 2003 It\'s a script for geeklog. but i want it in a normal php script. <?php function phpblock_randomQuote() { global $_CONF; $result = DB_query(" SELECT * FROM quote ORDER BY RAND() LIMIT 1 "); $res = DB_fetchArray($result); $author = ($res[\'author\']) ? $res[\'author\'] : \'anonymous\'; $source = ($res[\'source\']) ? $res[\'source\'] : \'\'; if ($source != \'\' && $res[\'year\'] != \'\') { $year = ", {$res[\'year\']}"; } else { $year = \'\'; } $link = "<a target=\'new\' title=\'$source $year\' href=\'http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=" . $author . "\'>" . $author . "</a>"; $authorLink = ($author != \'anonymous\') ? $link : \'anonymous\'; $retval = <<<EOF <table> <tr> <td>"{$res[\'quote\']}"</td> </tr> <tr> <td align="right">-- <b>$authorLink</b></td> </tr> </table> EOF; return $retval; } ?> [/code] Quote Link to comment Share on other sites More sharing options...
shivabharat Posted August 28, 2003 Share Posted August 28, 2003 Try this http://www.phpfreaks.com/tutorials/51/0.php Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.