날짜계산후 php import하는 방법이 궁금합니다.
본문
예를들어 날짜 2017-07-06이면 하루전에 문자를 전송하는 페이지를 구현중입니다.
현재
여기 까지 제작이 되었습니다.
php소스는
<?php
if($result!==FALSE){
while($row = mysql_fetch_array($result)) {
printf("<tr><td align=center> %s </td><td align=center> %s </td><td align=center> %s </td><td align=center> %s </td><td align=center> %s </td> </tr>",
$date = date("Y-m-d"), $row["a"], $date = $row["b"], $d_day = floor(( strtotime(substr($date,0,10)) -
strtotime(date('y-m-d')) )/86400),'<a href="phpMySQLDeleteRecord.php?CusID= $row["a"];">Delete</a>' );
이렇게 되는데 $d_day = floor(( strtotime(substr($date,0,10)) -
strtotime(date('y-m-d')) )/86400)
이 부분을 응용하면 하루전 날짜를 계산하는 것이 가능할 것 같은데 도무지 생각이안나네요 ㅠㅠ
하루전 날짜가 계산되면 http://linkbizall.com/ctm/example_utf8_sendsms.php 이 페이지를 import시켜 자동으로 문자를 발송하고 싶습니다.
어떻게 하면 좋을가요 ㅠ