I am using Cron Tabs to send notifications to my android APP, but now I ran into a problem, my Host Provider has limited CronTab-s to 5, but I have 7 PHP files which I need to run in 3 separate times.
So my idea was, all that I need to run at the same time i "Group" and run them together, but I am not able to to that because PHP seems to include only the first one and then stops with that and does not include next one.
<?php
include("push_n_lisatud.php");
include("push_n_muudetud.php");
?>
is there any workaround for that or I am on the very wrong route to achieve what I am trying to do?