i have function for enter data in php for last date of month but how can i change in to first day of month.this is code for last day of month.
<?php
$a_date= date("Y-m-d");
$last_date= date("Y-m-t", strtotime($a_date));
if($a_date==$last_date){ }else{ }
?>