Hvordan sættes font størrelse ??
I følgende phpkode ønsker jeg at kunne lave \"echo \"$mday-$month-$year\";\" en smule mindre i skrifttypen hvordan gøres dette???<?php
$today = getdate();
$mday = $today[mday];
$month = $today[mon];
$year = $today[year];
if ( $month < 10) {
$month =\"0$month\";
}
if ( $mday < 10) {
$mday =\"0$mday\";
}
echo \"$mday-$month-$year\";
?>