Imperia Online International
March 28, 2024, 13:42:11 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 
   Home   Help Search Login Register  
Pages: 1 ... 4 5 [6]   Go Down
  Print  
Author Topic: IT , Programing etc .  (Read 47287 times)
0 Members and 1 Guest are viewing this topic.
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #75 on: August 18, 2010, 19:14:19 PM »

http://mb-p.lt/php/battle.php

A game without pictures, cascading style sheets, tables=width and height.
A game with logical system, secret formula, everything in percents accuracy guaranteed.

Ignore the php warnings below, then battle calculated they will disappear.
Logged

by Koramae.
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #76 on: August 25, 2010, 22:16:55 PM »

<?php

function AppleProduct() {
 echo 'Apple product:';
}

function AppleAir() {
 echo 'Apple Air';
}

function iPod() {
 echo 'iPod';
}

function iPhone() {
 echo 'iPhone';
}

function iPad() {
 echo 'iPad';
}

function br() {
 print '<br />';
}

function socks() {
 echo 'sucks ;}}}';
}

AppleProduct(); AppleAir(); socks(); br();
AppleProduct(); iPod(); socks(); br();
AppleProduct(); iPhone(); socks(); br();
AppleProduct(); iPad(); socks(); br();

?>
Logged

by Koramae.
KoSaC
Forum Staff
*

Karma: +504/-362
Offline Offline

Posts: 2624



« Reply #77 on: September 06, 2010, 16:53:47 PM »

Milking the Cow  *freak* *freak*
I WANT YOUR MILK!
Logged


Everyone needs to believe in something.
I believe I'll have another beer. *bear*
Kopator
Captain
****

Karma: +87/-47
Offline Offline

Posts: 392



« Reply #78 on: September 06, 2010, 17:10:58 PM »

I WANT YOUR MILK!

what you gonna do with it ? Huh?
 *freak*
Logged

Hail to the Spam King *KING*
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #79 on: September 06, 2010, 21:06:11 PM »

<?php
        function milk($girl,$boy) {
           $girl = $_POST['submit'];
           $boy = $_POST['submit'];
 
           $submit = 1 or 0;
           
           $total = $submit;
           return $submit;
           }
           echo 'You will milk: ' . milk($girl,$boy);
         ?>
Logged

by Koramae.
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #80 on: January 03, 2011, 23:35:29 PM »

<?php
$pass='Spammers';

$database_host='localhost';
$database_name='mbp_family';
$database_pass = md5($pass);

$con = mysql_connect('$database_host', '$database_name', '$database_pass');

mysql_select_db(''mbp_family'', $con);

$sql=''
CREATE TABLE spammers (
username varchar(25),
id int,
topicId int
);

INSERT INTO spammers (username, id, topicId)
VALUES ('KoSaC',
            '6745',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Kopator',
             '34185',
             '11597'
             );

INSERT INTO spammers (username, id, topicId)
VALUES ('HerrSchultze',
            '18861',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Makatas',
            'guest',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Tiger',
            '446',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Isolde',
            '43',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Hiske',
            '8',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Kropotkin',
            '167',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('fragmaster',
            '13727',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('savvanah',
            '22324',
            '11597'
            );

'';

mysql_query($sql);

?>
Logged

by Koramae.
Kopator
Captain
****

Karma: +87/-47
Offline Offline

Posts: 392



« Reply #81 on: January 04, 2011, 00:26:02 AM »

<?php
$pass='Spammers';

$database_host='localhost';
$database_name='mbp_family';
$database_pass = md5($pass);

$con = mysql_connect('$database_host', '$database_name', '$database_pass');

mysql_select_db(''mbp_family'', $con);

$sql=''
CREATE TABLE spammers (
username varchar(25),
id int,
topicId int
);

INSERT INTO spammers (username, id, topicId)
VALUES ('KoSaC',
            '6745',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Kopator',
             '34185',
             '11597'
             );

INSERT INTO spammers (username, id, topicId)
VALUES ('HerrSchultze',
            '18861',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Makatas',
            'guest',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Tiger',
            '446',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Isolde',
            '43',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Hiske',
            '8',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('Kropotkin',
            '167',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('fragmaster',
            '13727',
            '11597'
            );

INSERT INTO spammers (username, id, topicId)
VALUES ('savvanah',
            '22324',
            '11597'
            );

'';

mysql_query($sql);

?>
aha! i got higher value than kozy!
 *freak*
Logged

Hail to the Spam King *KING*
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #82 on: January 04, 2011, 10:50:51 AM »

that`s your ID, that means you`re younger  *freak*
Logged

by Koramae.
Kopator
Captain
****

Karma: +87/-47
Offline Offline

Posts: 392



« Reply #83 on: January 04, 2011, 11:06:11 AM »

that`s your ID, that means you`re younger  *freak*

party crasher  *crazy*
*Tongue* *Tongue* *Tongue*
 *freak*
Logged

Hail to the Spam King *KING*
maeof
Back in Business.
Translators
*

Karma: +183/-61
Offline Offline

Posts: 746



WWW
« Reply #84 on: January 04, 2011, 18:58:17 PM »

party crasher  *crazy*
*Tongue* *Tongue* *Tongue*
 *freak*

You always do this to me ! I`m always killing the chat and crashin the parties *freak*
Logged

by Koramae.
KaBad
Private
*

Karma: +0/-0
Offline Offline

Posts: 0


Memento Mori


« Reply #85 on: January 07, 2014, 16:25:12 PM »

IT here.Network Tech [:-} [:-} [:-} *TENDER* *COURTESY*
Logged

Toti oamenii sint trecatori,insa nu toti trecatorii sint oameni.
Pages: 1 ... 4 5 [6]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.12 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!