https://www.lineameteo.it/viewtopic.php?f=8&t=2566
-----------------------------------
andrea75
Mar 22 Ago, 2006 11:08

Speed test
-----------------------------------
[color=#DD3333]Text formatting (No Parameters)[/color]
[b]BOLD[/b]
[strong]STRONG[/strong]
[em]EM[/em]
[i]i[/i]
[u]u[/u]
[strike]strike[/strike]
[sup]sup[/sup]
[sub]sub[/sub]

[align=left]align[/align]
[align=center]align[/align]
[align=right]align[/align]
[align=justify]align[/align]

[center]center[/center]

[font=Arial]font[/font]
[font=Comic Sans MS]font[/font]
[font=Courier New]font[/font]
[font=Impact]font[/font]
[font=Lucida Console]font[/font]
[font=Lucida Sans Unicode]font[/font]
[font=Microsoft Sans Serif]font[/font]
[font=Symbol]font[/font]
[font=Tahoma]font[/font]
[font=Times New Roman]font[/font]
[font=Traditional Arabic]font[/font]
[font=Trebuchet MS]font[/font]
[font=Verdana]font[/font]
[font=Webdings]font[/font]
[font=Wingdings]font[/font]

[size=6]size[/size]

[size=36]size[/size]

[span class=topic_glo]span[/span]
[cell class=mg_quotetitle]cell[/cell][cell class=mg_quotediv]cell
cell
cell
cell
cell
cell
cell[/cell]

[cell class=mg_codetitle]cell[/cell][cell class=mg_codediv]cell
cell
cell
cell
cell
cell
cell
cell
cell[/cell]

[hr]

[color=#FF8866]color[/color]
[glow=#FFFFAA]glow[/glow]
[shadow=#888888]shadow[/shadow]
[highlight=#FFFFAA]highlight

[rainbow]rainbow[/rainbow]
[gradient cols=#FF8866 cole=#336699 iterations=8]gradient[/gradient]

[opacity=50]opacity[/opacity]
[fade=80]fading text[/fade]
[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]

[marquee direction=up scrolldelay=120 behavior=alternate]marquee[/marquee]
[marquee direction=down scrolldelay=240 behavior=slide]marquee[/marquee]
[marquee direction=left scrolldelay=360 behavior=alternate]marquee[/marquee]
[marquee direction=right scrolldelay=480 behavior=slide]marquee[/marquee]


[img align=right]http://www.icyphoenix.com/templates/mg_themes/images/blue/sitelogo_small.png[/img]




[albumimg]1[/albumimg]


[albumimg align=center mode=full]1[/albumimg]



[smiley smilie=8 fontcolor=DD2244 shadowcolor=6699AA shieldshadow=1]Ciao[/smiley]





http://www.icyphoenix.com/
[email]nospam@nospam.com[/email]

[list=1][*]list
[*]list
[*]list
[*]list
[*]list[/list]


[list=a][*]list
[*]list
[*]list
[*]list
[*]list[/list]


[list][*]list
[*]list
[*]list
[*]list
[*]list[/list]


[quote user="Mighty Gorgon"]quote[/quote]
[ot user="Mighty Gorgon"]ot[/ot]

[spoiler][code syntax=php]<?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);

?>[/code][/spoiler]

[code]<?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);

?>[/code]

[code highlight=2-4]<?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);

?>[/code]

[codeblock syntax=php]<?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);

?>[/codeblock]

[langvar]BBC_IP_CREDITS[/langvar]

[cell class=spoiler][langvar]BBC_Upgrade_phpbb[/langvar][/cell]


Messaggio Nascosto:
Spiacenti, ma devi esere registrato e devi rispondere alla discussione per poter vedere questo messaggio.


[wave][shadow=#888888][glow=#FFFFAA][color=#FF8866][size=24]EXAMPLE OF [highlight=#FFFFAA]COMBINING FX VISIBLE ONLY WITH IE[/size][/color][/glow][/shadow][/wave]


[color=#FF9966][b]Image 01[/b][/color]
[opacity=30%][img alt="Image 01" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/071101spiderman.jpg[/img][/opacity]


[color=#FF9966][b]Image 02[/b][/color]
[opacity=30%][img alt="Image 02" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/100102anneau2.jpg[/img][/opacity]


[color=#FF9966][b]Image 03[/b][/color]
[opacity=30%][img alt="Image 03" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/fantasy_fire_fairy.jpg[/img][/opacity]


[color=#FF9966][b]Image 04[/b][/color]
[opacity=30%][img alt="Image 04" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/fantasy_phoenix.jpg[/img][/opacity]


