Hello,
I am a total beginner to PHP. I am trying to change the text format for:
<?php echo date("l dS of F Y"); ?>
For example, if I wanted it to be displayed in Arial, font size 11, and in bold ... how would I do this?
Thanks
Well, I'm also a beginner. But perhaps this way?
<font color="11" face="Arial"><b> <?php echo date("l dS of F Y"); ?> </b> </font>
or this:
<?php $date = date("l dS of F Y"); echo '<font color="11" face="Arial"><b>' . $date . '</b> </font>'; ?>
Shows you how much I know!
Thank you for taking the time to show me.🙂