Jump to content

[SOLVED] HOW IS THIS MADE?


roonnyy

Recommended Posts

Can be done with PHP, yeah.

 

Simple example:

 

<?php
$days = array('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday');
foreach ($days as $day) {
   $text = (date('l') == $day) ? "<strong>$day</strong>" : $day;
   echo "$text<br />";
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.