Testimonial Code
Simply click inside the window below or click the Button, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a file in which you want to display the Testimonials.
PHP Version
Display the 5 Most Recent Testimonial Headlines.
$TestimonialURL = "__MODULE_VROOT_DIR__/control/testimonial.php?module_name=__module_name__&ano=5"; $handle = fopen($TestimonialURL,"rb"); $contents = ''; while (!feof($handle)) { $contents .= fread($handle, 8192); } print $contents; //$contents holds the Testimonial contents
JavaScript Version
Display the 5 Most Recent Testimonial Headlines.