首先,我在上一页输入 e6 = 24-09-2011 作为输入类型 =“文本”,然后:
$a6 = $_POST["e6"] ;
$time = strtotime( $a6 );
$myDate = date ("y-m-d", $time );
echo $myDate ;
$n = strtotime(date("Y-m-d", strtotime($myDate)) . " +$a7 month");
$q = date("Y-m-d", $n);
echo $q ;
out put: 11-09-24 2013-09-24
我想打印 2011 来代替 11。我该怎么办??请帮忙。