Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post
Post Testing This Forum Speed :mricy: 
 
Text formatting (No Parameters)
BOLD
STRONG
EM
i
u
strike
sup
sub

align

align

align

align


center


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





color
[glow=#FFFFAA]glow[/glow]
[shadow=#888888]shadow[/shadow]
[highlight=#FFFFAA]highlight

rainbow
gradient

opacity

fading text

[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]

marquee
marquee
marquee
marquee


sitelogo_small











Ciao





http://www.icyphoenix.com/


  1. list
  2. list
  3. list
  4. list
  5. list



  1. list
  2. list
  3. list
  4. list
  5. list



  • list
  • list
  • list
  • list
  • list



Mighty Gorgon wrote: 
quote

Off Topic
 Mighty Gorgon: 
ot


Spoiler: [ Show ]


Code: [Download] [Hide]
  1. <?php  
  2. define('IN_PHPBB', true);  
  3. $phpbb_root_path = './';  
  4. include($phpbb_root_path . 'extension.inc');  
  5. include($phpbb_root_path . 'common.'.$phpEx);  
  6.  
  7. // Start session management  
  8. $userdata = session_pagestart($user_ip, PAGE_INDEX);  
  9. init_userprefs($userdata);  
  10. // End session management  
  11.  
  12. $gen_simple_header = true;  
  13. $page_title = $lang['Greeting_Messaging'];  
  14. include($phpbb_root_path . 'includes/page_header.'.$phpEx);  
  15. $year=create_date('Y', time(), $board_config['board_timezone']);  
  16. $date_today = create_date('Ymd', time(), $board_config['board_timezone']);  
  17. $user_birthday=realdate("md",$userdata['user_birthday']);  
  18. $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;  
  19. $l_greeting = ($user_birthday2==$date_today) ?  
  20.     sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :  
  21.     sprintf ( $lang['Birthday_greeting_prev'],  date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );  
  22. $template->set_filenames(array(  
  23.         'body' => 'greeting_popup.tpl'));  
  24. $template->assign_vars(array(  
  25.         'L_CLOSE_WINDOW' => $lang['Close_window'],  
  26.         'L_MESSAGE' => $l_greeting ));  
  27. $template->pparse('body');  
  28. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);  
  29.  
  30. ?> 


Code: [Download] [Hide]
  1. <?php  
  2. define('IN_PHPBB', true);  
  3. $phpbb_root_path = './';  
  4. include($phpbb_root_path . 'extension.inc');  
  5. include($phpbb_root_path . 'common.'.$phpEx);  
  6.  
  7. // Start session management  
  8. $userdata = session_pagestart($user_ip, PAGE_INDEX);  
  9. init_userprefs($userdata);  
  10. // End session management  
  11.  
  12. $gen_simple_header = true;  
  13. $page_title = $lang['Greeting_Messaging'];  
  14. include($phpbb_root_path . 'includes/page_header.'.$phpEx);  
  15. $year=create_date('Y', time(), $board_config['board_timezone']);  
  16. $date_today = create_date('Ymd', time(), $board_config['board_timezone']);  
  17. $user_birthday=realdate("md",$userdata['user_birthday']);  
  18. $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;  
  19. $l_greeting = ($user_birthday2==$date_today) ?  
  20.     sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :  
  21.     sprintf ( $lang['Birthday_greeting_prev'],  date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );  
  22. $template->set_filenames(array(  
  23.         'body' => 'greeting_popup.tpl'));  
  24. $template->assign_vars(array(  
  25.         'L_CLOSE_WINDOW' => $lang['Close_window'],  
  26.         'L_MESSAGE' => $l_greeting ));  
  27. $template->pparse('body');  
  28. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);  
  29.  
  30. ?> 


Code: [Download] [Hide] [Select]
<?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);

?>


Readme




Hidden Message:
Sorry, but you must be registered and also post a reply to view this message.


[wave][shadow=#888888][glow=#FFFFAA]EXAMPLE OF [highlight=#FFFFAA]COMBINING FX VISIBLE ONLY WITH IE[/glow][/shadow][/wave]


Image 01
Image 01



Image 02
Image 02



Image 03
Image 03



Image 04
Image 04

 



 
novice programmerSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events