Please anyone help me to solved my case :
What should I add to my code, if the output from the code below is insert on the table in POSTGRES, and row that will be inserted are more than 1000 rows. When I running using this code below it appears the error :
Fatal error: Maximum execution time of 60 seconds exceeded in D: \ xampp \ htdocs \ BillingDeliveryInfo \ page2.php on line 45
Because it took so long query maybe
while($msisdn = pg_fetch_row($qaccount)){ 
if ($msisdn[4]==2){
    $insert1="insert into delin_bdi_rf 
              values ('$msisdn[1]',
                      '$m1[1] $msisdn[1] $m1[2] $msisdn[2] $m1[3] $msisdn[3] $m1[4]',
                       CURRENT_DATE);";
}else{
    $insert2="insert into delin_bdi_rf 
              values ('$msisdn[1]',
                      '$m2[1] $msisdn[1] $m2[2] $msisdn[3] $m2[3]',
                       CURRENT_DATE);";
}
    $qwer=$insert1.$insert2;
    $n=pg_query($qwer);
}   
 
     
    