PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I have a form with three dropdowns (month) (day) (year)
I am submitting it to a seperate page to process it...
I am trying to get one value out of the three variables (mySql date format yyyy-mm-dd) Here is what i have .. obviously it is doing the math... heh heh...
$actualdate = $fromYear-$fromMonth-$fromDay;
in perl I would do something like
$actualdate = $fromYear\-$fromMonth\-$fromDay;
so it would ignore the operators. what is the php equivilant?