View Single Post
Old 05-08-2008, 12:13 PM   #3 (permalink)
Jim
The Addict
 
Jim's Avatar
 
Join Date: Nov 2007
Location: the Netherlands
Posts: 281
Thanks: 2
Jim is on a distinguished road
Default

Quote:
Originally Posted by sarmenhb View Post
i made a script that when ran will increase a databases size in infinite increments untill the browser is closed.
how me what you can create :p

Code:
$host = "localhost";
$login = "root";
$password = "pass";
$database = "db_loop";

$con = mysql_connect($host,$login,$password);
mysql_select_db($database);

while($i=0;$i< $i+1; $i++) { 

$sql = "INSERT INTO tbl_loop(id) values('$i')";
$output = mysql_query($sql);

}
Simple but funny when you found a website were you can excecute your own PHP :)

@Village Idiot: Why the f*** do you have hitler in your signature :S. Many people here in Europe died by his actions...
__________________
Nunchaku! Who doesn't like martial arts? =)
Send a message via MSN to Jim Send a message via Skype™ to Jim
Jim is offline  
Reply With Quote