I am trying to create a class for a table td based on the string that is outputted within it.
<?php echo '<td class="'?>
<?php
if ($day === 'monday')
echo 'mon';
if ($day === 'tuesday')
echo 'tues';
?>
<?php echo '">' . $day . '</td>'
However this results in the following:
<td class>monday</td>
I am trying to achieve this:
<td class="mon">monday</td>
<td class="tues">tuesday</td>
Any idea what I am doing wrong?
$dayis actually either'monday'or'tuesday'? – Jack Nov 1 '12 at 1:46monandtue, that way, the class value will be<?= substr($day, 0, 3) ?>and you won't need any if-else. – xbonez Nov 1 '12 at 1:47