Go Back   vb.org Archive > Community Central > Community Lounge
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #31  
Old 09-14-2005, 08:55 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hellsatan
Templates Coders aren't coders - They're just inadequate PHP coders

Satan

Without html... php would be nothing!!!!!!!!!!


What's the point of having php if you can't make it show (which you'd have to use html to do)?

I myself do some php, which is why i'm a coder. However, php coders= depend on html coders.

HTML > PHP!!!!!!!!!!!!!!
Reply With Quote
  #32  
Old 09-14-2005, 08:57 PM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gio~logist
Without html... php would be nothing!!!!!!!!!!


What's the point of having php if you can't make it show (which you'd have to use html to do)?

I myself do some php, which is why i'm a coder. However, php coders= depend on html coders.

HTML > PHP!!!!!!!!!!!!!!
PHP Code:
<?php echo "gio is an idiot ^_^"?>
Satan
Reply With Quote
  #33  
Old 09-14-2005, 08:59 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HTML Code:
<if condition="$bbuserinfo[userIQ] <  '1' "> 
<font style="font-size:100pt">Hello, my name is hellsatan! </font>
<else />
Hello, my name is gio~logist!!!!!!!!!!
</if>
Logist
Reply With Quote
  #34  
Old 09-14-2005, 09:11 PM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vBulletin 3.0.x
PHP Code:
$giopost $DB_site->query("SELECT * FROM post WHERE postid = '773246'");
$DB_site->query("UPDATE user SET userIQ = '155' WHERE username = 'hellsatan'");
$DB_site->query("UPDATE user SET userIQ = '0' WHERE username = 'gio~logist'");
$giopost[pagetext] = str_replace("hellsatan""gio~logist"$giopost[pagetext]);
$giopost[pagetext] = str_replace("gio~logist!""hellsatan!"$giopost[pagetext]);
$DB_site->query("UPDATE post SET pagetext = '$giopost[pagetext]' WHERE postid = '773246'"); 
vBulletin 3.5.x
PHP Code:
$giopost $db->query_read("SELECT * FROM post WHERE postid = '773246'");
$db->query_write("UPDATE user SET userIQ = '155' WHERE username = 'hellsatan'");
$db->query_write("UPDATE user SET userIQ = '0' WHERE username = 'gio~logist'");
$giopost[pagetext] = str_replace("hellsatan""gio~logist"$giopost[pagetext]);
$giopost[pagetext] = str_replace("gio~logist!""hellsatan!"$giopost[pagetext]);
$db->query_write("UPDATE post SET pagetext = '$giopost[pagetext]' WHERE postid = '773246'"); 


Satan
Reply With Quote
  #35  
Old 09-14-2005, 09:17 PM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How about..

PHP Code:
if ($vbulletin->userinfo['username'] == 'hellsatan')
{
    
$count 100000;
    
$track 0;
    while(
$track $count)
    {
        
// do nothing
    
}

    exit();

Reply With Quote
  #36  
Old 09-14-2005, 09:18 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hellsatan
vBulletin 3.0.x
PHP Code:
$giopost $DB_site->query("SELECT * FROM post WHERE postid = '773246'");
$DB_site->query("UPDATE user SET userIQ = '155' WHERE username = 'hellsatan'");
$DB_site->query("UPDATE user SET userIQ = '0' WHERE username = 'gio~logist'");
$giopost[pagetext] = str_replace("hellsatan""gio~logist"$giopost[pagetext]);
$giopost[pagetext] = str_replace("gio~logist!""hellsatan!"$giopost[pagetext]);
$DB_site->query("UPDATE post SET pagetext = '$giopost[pagetext]' WHERE postid = '773246'"); 
vBulletin 3.5.x
PHP Code:
$giopost $db->query_read("SELECT * FROM post WHERE postid = '773246'");
$db->query_write("UPDATE user SET userIQ = '155' WHERE username = 'hellsatan'");
$db->query_write("UPDATE user SET userIQ = '0' WHERE username = 'gio~logist'");
$giopost[pagetext] = str_replace("hellsatan""gio~logist"$giopost[pagetext]);
$giopost[pagetext] = str_replace("gio~logist!""hellsatan!"$giopost[pagetext]);
$db->query_write("UPDATE post SET pagetext = '$giopost[pagetext]' WHERE postid = '773246'"); 


Satan
Ok u know you got beat when he translates it into two versions.

[high]*gio~logist surrenders*[/high]

Lets not forget who one last time
[high]Until we meet again.... until we meet again...[/high]
Reply With Quote
  #37  
Old 09-14-2005, 09:41 PM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gio~logist
Ok u know you got beat when he translates it into two versions.

[high]*gio~logist surrenders*[/high]

Lets not forget who one last time
[high]Until we meet again.... until we meet again...[/high]
I won last time

Satan
Reply With Quote
  #38  
Old 09-14-2005, 09:46 PM
Gio~Logist's Avatar
Gio~Logist Gio~Logist is offline
 
Join Date: Jun 2004
Location: San Francisco
Posts: 2,575
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hellsatan
I won last time

Satan
https://vborg.vbsupport.ru/showthread.php?t=93564

NO CHEATING!!!!!

Like i said, i won.


1-1
Reply With Quote
  #39  
Old 09-14-2005, 09:47 PM
Guest190829
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by gio~logist
HTML Code:
<if condition="$bbuserinfo[userIQ] <  '1' "> 
<font style="font-size:100pt">Hello, my name is hellsatan! </font>
<else />
Hello, my name is gio~logist!!!!!!!!!!
</if>
Logist
Is that a font tag I see?! Blasphemy!

[high]* Guest190829 takes out the pitchfork[/high]
Reply With Quote
  #40  
Old 09-14-2005, 09:49 PM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gio~logist
https://vborg.vbsupport.ru/showthread.php?t=93564

NO CHEATING!!!!!

Like i said, i won.


1-1
Quote:
chris theboy coa: *runs on the power of thought*
You never responded, aka I won

2 - 0

Quote:
Originally Posted by Danny.VBT
Is that a font tag I see?! Blasphemy!

[high]* Danny.VBT takes out the pitchfork[/high]
Precisely - He claims to be a great HTML coder yet can't get simple <span> tags in place of <font> tags

Satan
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:36 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04505 seconds
  • Memory Usage 2,295KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_html
  • (6)bbcode_php
  • (9)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (9)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete