0) { // Load all orders $OUT = ''; $SW = 2; while ($data = SQL_FETCHARRAY($result)) { // Is the ZIP code set? If not, set dashes if (empty($data['zip'])) $data['zip'] = '---'; // Prepare content for output $content = array( 'sw' => $SW, 'id' => $data['id'], 'cat' => getCategory($data['cat_id']), 'pay' => getPaymentTitlePrice($data['payment_id']), 'subj' => COMPILE_CODE($data['subject']), 'url' => DEREFERER($data['url']), 'stamp' => generateDateTime($data['timestamp'], '2'), 'recs' => $data['target_send'], 'type' => translatePoolType($data['data_type']), 'zip' => $data['zip'] ); // Load template $OUT .= LOAD_TEMPLATE("member_pool_row", true, $content); // Switch color $SW = 3 - $SW; } // END - if // Load main template $main_content['pool'] = LOAD_TEMPLATE("member_pool_table", true, $OUT); } else { // No mails in pool! $main_content['pool'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_POOL')); } // Free result SQL_FREERESULT($result); // Load sent orders $result = SQL_QUERY_ESC("SELECT `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks` FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE `userid`=%s ORDER BY `timestamp_ordered` DESC", array(getUserId()), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Mail orders are in pool so we can display them $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template $content = array( 'sw' => $SW, 'cat' => getCategory($content['cat_id']), 'pay' => getPaymentTitlePrice($content['payment_id']), 'subj' => COMPILE_CODE($content['subject']), 'url' => DEREFERER($content['url']), 'stamp' => generateDateTime($content['timestamp_ordered'], '2'), 'recs' => $content['max_rec'], 'sent' => generateDateTime($content['timestamp_send'], '2'), 'clix' => $content['clicks'], 'perc' => COMPILE_CODE($content['clicks'] / $content['max_rec'] * 100)."%", ); // Load row template and switch colors $OUT .= LOAD_TEMPLATE('member_stats_row', true, $content); $SW = 3 - $SW; } // Load main template $main_content['stats'] = LOAD_TEMPLATE('member_stats_table', true, $OUT); } else { // No mail orders fond $main_content['stats'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_STATS')); } // Free result SQL_FREERESULT($result); // Load main template LOAD_TEMPLATE('member_stats_pool', false, $main_content); // ?>