Hey All,
Is there a simple means by which to have this query run ONLY ONCE, per day?
PHP Code:foreach ($targets as $key => $value) {
set_time_limit( 60 * 5 );
$populate_canvas_list = "INSERT INTO prospect_lists_prospects (id,prospect_list_id,related_id,related_type,date_modified,deleted)
VALUES $value);";
$result=mysql_query($populate_canvas_list);
}


Reply With Quote
Bookmarks