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.
|
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.
| |||
|
feedback
|
|
To get it out of a DB, you'd do something like this in SQL:
To get it out of a text file, you'd do something like this:
| |||
|
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. | |||
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. | |||
|
feedback
|