Posted on: 10/20/06 10:14am
By: Anonymous (Nathan Burke)
Missing argument 1 for phpblock_custom__getquote() in /home/somewhere/public_html/blog/system/lib-custom.php on line 449
function phpblock_custom_getquote($custom_getquote) { $db = mysql_connect("localhost", "login", "******"); mysql_select_db("*******", $db); $numStories = 6; $result = mysql_query("SELECT * FROM items WHERE items.quote <>'' AND date2<=curdate() ORDER BY ID DESC LIMIT 1"); $nrows = mysql_num_rows($result); for ($i = 1; $i <= $nrows; $i++) { $A = mysql_fetch_array($result); $B = ($A['quote']); $C = htmlspecialchars($; //if there's only one quote: if ($A['quote2']==''){ $retval .= '“<b>'. stripslashes($A['quote']).'</b>â€<br>'; $retval .= '-<i>' . stripslashes($A['qsource']) . '</a> '; $retval .='<a href="'.$A['link1'].'">...Full Story</a></i><br><br>'; } //If there is a second quote if ($A['quote2'] <> ''){ //If there's a second quote and both quotes come from different stories if ($A['qlink2'] <> ''){ $retval .= '“<b>'. stripslashes($A['quote']).'</b>â€<br>'; $retval .= '-<i>' . stripslashes($A['qsource']) . '</a> '; $retval .='<a href="'.$A['link1'].'">...Full Story</a></i><br><br>'; $retval .= '“<b>'. stripslashes($A['quote2']).'</b>â€<br>'; $retval .= '-<i>' . stripslashes($A['qsource2']) . '</a> '; $retval .='<a href="'.$A['qlink2'].'">...Full Story</a></i><br><br>'; } //If there's a second quote and both quotes go to the same story if ($A['qlink2']==''){ $retval .= '“<b>'. stripslashes($A['quote']).'</b>â€<br>'; $retval .= '-<i>' . stripslashes($A['qsource']) . '</a> '; $retval .='<a href="'.$A['link1'].'">...Full Story</a></i><br><br>'; $retval .= '“<b>'. stripslashes($A['quote2']).'</b>â€<br>'; $retval .= '-<i>' . stripslashes($A['qsource2']) . '</a> '; $retval .='<a href="'.$A['link1'].'">...Full Story</a></i><br><br>'; } }
Posted on: 10/20/06 10:44am
By: jmucchiello
Posted on: 10/20/06 10:50am
By: Anonymous (Nathan Burke)