switch($section)
{
case 'product':
print 'PRODUCT
';
break;
case 'word':
print "WORD FROM THE INVENTOR
";
break;
case 'testimonials':
print 'TESTIMONIALS
';
break;
case 'safety':
print 'SAFETY TIPS
';
break;
case 'contact':
print 'TO CONTACT US
';
break;
default:
print 'TO ORDER
';
break;
}
include("contenu/".$section.".php");
// include("contenu/order.php");
?>
|