Hi all,
How do I make a numeric string from 2 vars without adding them together?
i.e
$var3 = date("m") & date("d"); // should make 0116
thanks all in advance.
🙂
Sorted
$thedate1 = array(date("m"),date("d")); $thedate = implode("",$thedate1);
Kind of the long way around. Why not just "$thedate = date('md');"?
or
$var = date("m") . date("d"); // makes 0116
But I should go for Installer's version. 🙂