0) { // List available ref banners $OUT = ''; $SW = 2; while ($row = SQL_FETCHARRAY($result)) { $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0; if ($test == $row['url']) { // Download banner (I hope you keep the banner on same server???) $fp = sendGetRequest($row['url']); $bannerContent = ''; if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0)) { // Loads only found banner, when there is a 404 error this foreach() command // will cause an "Invalid argument supplied for foreach()" error foreach ($fp as $f) { $bannerContent .= $f; } // END - foreach } // END - if $size = strlen($bannerContent); } elseif (isFileReadable($test)) { $size = filesize($test); } $row['alternate'] = '{?MAIN_TITLE?} - {?SLOAGAN?}'; if ($size > 0) $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; // Add some more data $row['sw'] = $SW; $row['userid'] = getUserId(); // Add row $OUT .= loadTemplate('member_reflinks_row', true, $row); // Switchcolors $SW = 3 - $SW; } // END - while // Load final template $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT); } else { // No refbanner found! $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_REFBANNER_FOUND')); } // Free result SQL_FREERESULT($result); // Load main template loadTemplate('member_reflink', false, $content); // [EOF] ?>