Hi, I have made a registration for and have got it all working I have just not managed to make the date show up properly... in my MySQL there is the column "dateJoined" which is formatted as DATE and this is the PHP
$acceptHash = -- $acceptHash .=-- // cannot get this to show up! $date=date(“Ymd”);
$addToDatabase = \"INSERT INTO `--`.`users` (----`dateJoined`) VALUES ( ---- '$date'
I have made a registration for and have got it all working I have just not managed to make the date show up properly...
in my MySQL there is the column "dateJoined" which is formatted as DATE and this is the PHP
in the database it show:
http://grab.by/6da
any way to get the date formatted right?
$date = date(“Ymd”);
instead of this
$date=date(“Ymd”);
Using:
$date = date("Y-m-d");
now.
Thanks for your help though