hiw do i make a <br>
in this
echo '<b>Up since:<br><br></b>' . date(' F jS, Y ' . 'here <BR>' . 'l h:i a', $upsince);
store the date in a variable then echo it out within the context that you want it
i change the code to this
echo date(' F jS, Y ', $upsince); echo '<br>'; echo date( 'l h:i a', $upsince);
But how do this effect preformans if i do this in my way!
try this out:
$datestamp = date(' F jS, Y ', $upsince) . "<br>" . date( 'l h:i a', $upsince); echo $datestamp;
-=Lazzerous=-
why not
echo date(' F jS, Y <b\r> l h:i a', $upsince);
?
the whole stuff gets messed up since "r" is a possible format option for date, so you gotta escape it and eveything is fine
Thanks for all the good codes!!😃