I've opened this topic to test the speed of your XS, and being able to make some comparison.
I'll try to keep track of the best results... :wink:
How to proceed...
- Copy the message included in this codeblock (Click SHOW in the SPOILER, then SELECT and CTRL + C in the CODEBLOCK)
Spoiler: [ Show ]
- Post it in your forum
- Make sure that in ACP you have enabled the EXECUTION time on footer
- Try loading the page WITH and WITHOUT post cache enabled (when you enable it, you have to load the post twice!)
- Take note of the elapsed time and report it here! :lol:
Here is the demo:
Text formatting (No Parameters)
BOLD
STRONG
EM
i
u
sup
sub
align
align
align
align
font
font
font
font
font
font
font
font
font
font
font
font
font
font
font
size
size
span
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
color
[glow=#FFFFAA]glow[/glow]
[shadow=#888888]shadow[/shadow]
highlight
rainbow
gradient
opacity
fading text
[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]

http://www.icyphoenix.com/
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
- list
Mighty Gorgon wrote:
Mighty Gorgon:
Spoiler: [ Show ]
- <?php
- define('IN_PHPBB', true);
- $phpbb_root_path = './';
- include($phpbb_root_path . 'extension.inc');
- include($phpbb_root_path . 'common.'.$phpEx);
- // Start session management
- $userdata = session_pagestart($user_ip, PAGE_INDEX);
- init_userprefs($userdata);
- // End session management
- $gen_simple_header = true;
- $page_title = $lang['Greeting_Messaging'];
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
- $year=create_date('Y', time(), $board_config['board_timezone']);
- $date_today = create_date('Ymd', time(), $board_config['board_timezone']);
- $user_birthday=realdate("md",$userdata['user_birthday']);
- $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
- $l_greeting = ($user_birthday2==$date_today) ?
- sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
- sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
- $template->set_filenames(array(
- 'body' => 'greeting_popup.tpl'));
- $template->assign_vars(array(
- 'L_CLOSE_WINDOW' => $lang['Close_window'],
- 'L_MESSAGE' => $l_greeting ));
- $template->pparse('body');
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- ?>
- <?php
- define('IN_PHPBB', true);
- $phpbb_root_path = './';
- include($phpbb_root_path . 'extension.inc');
- include($phpbb_root_path . 'common.'.$phpEx);
- // Start session management
- $userdata = session_pagestart($user_ip, PAGE_INDEX);
- init_userprefs($userdata);
- // End session management
- $gen_simple_header = true;
- $page_title = $lang['Greeting_Messaging'];
- include($phpbb_root_path . 'includes/page_header.'.$phpEx);
- $year=create_date('Y', time(), $board_config['board_timezone']);
- $date_today = create_date('Ymd', time(), $board_config['board_timezone']);
- $user_birthday=realdate("md",$userdata['user_birthday']);
- $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
- $l_greeting = ($user_birthday2==$date_today) ?
- sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
- sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
- $template->set_filenames(array(
- 'body' => 'greeting_popup.tpl'));
- $template->assign_vars(array(
- 'L_CLOSE_WINDOW' => $lang['Close_window'],
- 'L_MESSAGE' => $l_greeting ));
- $template->pparse('body');
- include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
- ?>
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
Readme
Hidden Message:
[wave][shadow=#888888][glow=#FFFFAA]EXAMPLE OF COMBINING FX VISIBLE ONLY WITH IE[/glow][/shadow][/wave]
Image 01
Image 02
Image 03
Image 04