Cron工作没有提交批量数据每分钟提交一次

I have set cron job every minutes and it working fine on single query.. the problem is it only submit 1 form.. how do i set if i have like 200 query to submit every minutes

* * * * * /usr/bin/wget -O /dev/null https://**.com/cron.php

here is my mysql query set on cronjob url every 1minutes

<?php
$d=strtotime("now");
$day_name =date("Y-m-d\TH:i", $d). "";
include_once('configure/config_cron.php');
include('function.php');
$count=1;
$sel_query="SELECT * FROM blasting where blasting_cron = '$day_name'";

$result = mysql_query($sel_query);
while($row = mysql_fetch_assoc($result)) { ?>

<?php
  $blasting_number= "" . protect($row["blasting_number"]). "";
  $followup_templates= "" . protect($row["followup_templates"]). "";
echo 
"<script>
// URL for request POST /message
var url = 'https://xxxx.com/tokenaa';
var data = {
    phone: '$blasting_number', // Receivers phone
    body: '$followup_templates', // Message
};
// Send a request
$.ajax(url, {
    data : JSON.stringify(data),
    contentType : 'application/json',
    type : 'POST'
});
</script>
";?>
<?php $count++; } ?>

the results will duplicate like this

<script>
// URL for request POST /message
var url = 'https://xxxx.com/tokenaa';
var data = {
    phone: '7193847364', // Receivers phone
    body: 'hi', // Message
};
// Send a request
$.ajax(url, {
    data : JSON.stringify(data),
    contentType : 'application/json',
    type : 'POST'
});
</script>

<script>
// URL for request POST /message
var url = 'https://xxxx.com/tokenaa';
var data = {
    phone: '4578888', // Receivers phone
    body: 'hi2', // Message
};
// Send a request
$.ajax(url, {
    data : JSON.stringify(data),
    contentType : 'application/json',
    type : 'POST'
});
</script>

and it should automaticly submit bulk data when cronjob is reloaded every minutes..