Automating help

Status
This thread has been locked.

James2

Social Media Services.
Banned
Feedback score
0
Posts
1,061
Reactions
548
Resources
0
<?php
$things = array("Tell James",
"Good web devs", "Evaluate data",
" Errota ");
foreach ($things as $thing) {
echo "<li>$thing</li>";
}

unset($thing);
?>
Pls don't, this is a serious thread
 
Banned forever. Reason: Impersonation/Attempt of *@mc(market.org email impersonation/Toxic behaviour)

James2

Social Media Services.
Banned
Feedback score
0
Posts
1,061
Reactions
548
Resources
0
He was trying to tell you that Errota is a good Web-Dev and that they could help you out.
<?php

// I know.
// I tagged Errota, a good web dev so he can help you.. but in PHP :3

?>
It originally said Alex something and I've already PM'd Errota.[DOUBLEPOST=1446165188,1446165084][/DOUBLEPOST]
Hello,

Thank you guys I know I almost always help people but I am a little busy with Host-Atom and my College work currently. If you still need help on the 5th of November I will help you.

Kind regards,
Jamie J M
Oh ma gurd come on that's too long.
 
Banned forever. Reason: Impersonation/Attempt of *@mc(market.org email impersonation/Toxic behaviour)

Errota

626TB.COM
Supreme
Feedback score
0
Posts
1,244
Reactions
915
Resources
0
Hello,

Thank you guys I know I almost always help people but I am a little busy with Host-Atom and my College work currently. If you still need help on the 5th of November I will help you.

Kind regards,
Jamie J M
 

James2

Social Media Services.
Banned
Feedback score
0
Posts
1,061
Reactions
548
Resources
0
Here is the script.
Works with CentOS.
Write one program which will run for 59 seconds, doing your checks every second, and then terminates. Combine this with a cron job which runs that process every minute and hey presto.
One approach is this:

set_time_limit(60);for($i =0; $i <59;++$i){
doMyThings();
sleep(1);}


if you have PHP 5.1+ use this
$start = microtime(true);
set_time_limit(60);for($i =0; $i <59;++$i){
doMyThings();
time_sleep_until($start + $i +1);}
How do I run the other script in this tho?
 
Banned forever. Reason: Impersonation/Attempt of *@mc(market.org email impersonation/Toxic behaviour)

James2

Social Media Services.
Banned
Feedback score
0
Posts
1,061
Reactions
548
Resources
0
Banned forever. Reason: Impersonation/Attempt of *@mc(market.org email impersonation/Toxic behaviour)
Status
This thread has been locked.
Top