I'd like to show a simple testimonial rotator on my site done in php.

Php can take testimonials from either a Text file or db, but I don't understand how to create te rotator part.

I'd appreciate any help you can offer. Thanks.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

To get it out of a DB, you'd do something like this in SQL:

SELECT testimonial FROM testimonials ORDER BY RAND() LIMIT 1

To get it out of a text file, you'd do something like this:

// load the file's contents
$testimonials = file_get_contents('text_file.txt');
// split the list by new lines, i.e. one testimonial per line
$testimonials = explode("\n", $testimonials);
// print a random one
print $testimonials[rand(0, (count($testimonials) - 1)];
link|improve this answer
feedback

If you want them to update live, you would have to use javascript or a framework such as jQuery. Otherwise @ceejayoz has provided a perfect answer.

link|improve this answer
Right, I'd probably use a content slider than this to rotate testimonials with some fade/slide effect. Thanks! – Nimbuz Sep 30 '09 at 2:39
feedback

you can use the order by rand() to select random records and show them or if u want to show them sequentially , keep track of the ids shown and then when u reach the end start from first record.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.