";
} else {
// We have turned Chat off in our Globals so show our default call us message...
$HTML_contactInformation = '
Have a question?
Please call to speak with a Novori jewelry consultant at:
Toll free
1-877-877-4141
';
}
}
?>
|
|
";
} else {
// We have turned Chat off in our Globals so show our default call us message...
$HTML_contactInformation = '
Have a question?
Please call to speak with a Novori Jewelry consultant at:
Toll free
1-877-877-4141
';
//}
echo $HTML_contactInformation;
//}
//rand(1,5)
// Retrieve Testimonial text...
$numberOfTestimonials = 15;
$selectKey = rand(5,25);
$query = "SELECT tsmlFirstName, tsmlInitials, tsmlText, tsmlQuote
FROM testimonials
WHERE tsmlDisplayMe = 'Y'
AND CHAR_LENGTH(tsmlText) > 125
ORDER BY substr(tsmlText,".$selectKey.",5) DESC LIMIT ".$numberOfTestimonials;
$result = mysqli_query($link, $query);
$num_results = mysqli_num_rows($result);
$scrollerText = '';
for ($i=0; $i < $num_results; $i++){
$tsmlWords = "";
$data = mysqli_fetch_row($result);
$tsmlFirstName = $data[0];
$tsmlInitials = $data[1];
$tsmlText = $data[2];
$tsmlQuote = $data[3];
// Create a new sentence x words long...
$tsmlWords = explode(" ", $tsmlText);
for ($j=0; $j < 35; $j++){
$tsmlSentence .= $tsmlWords[$j];
$tsmlSentence .= " ";
}
$tsmlSentence = rtrim($tsmlSentence);
$tsmlSentence .= '... '.$tsmlFirstName.'
View More
';
$scrollerText .= $tsmlSentence;
$tsmlSentence = "";
}
?>
|