All pastes #978820 Raw Edit

Stuff

public text v1 · immutable
#978820 ·published 2008-04-09 20:57 UTC
rendered paste body
/* show one random testimonial in sidebar */
function sfstst_onerandom() {
	global $wpdb;
	$table_name = $wpdb->prefix . "testimonials";
	$randone = $wpdb->get_row("SELECT testid, clientname, company, homepage, text_short, views FROM $table_name WHERE text_short !='' ORDER BY views ASC LIMIT 1");
	echo '<p class="tquote">';
	echo nl2br(stripslashes($randone->text_short)).'</p>';

	if ($randone->company != '') {
	echo '<p class="tclient">'.stripslashes($randone->clientname).'</p>';
		if ($randone->homepage != '') {
			echo '<p class="tcompany"><a href="'.$randone->homepage.'">'.stripslashes($randone->company).'</a></p>';
		} else {
			echo stripslashes($randone->company);
		}

	} else {
		echo '<p class="tclient">'.stripslashes($randone->clientname).'</p>';
	}