View Single Post
Old 04-29-2008, 03:26 AM   #1 (permalink)
sarmenhb
The Addict
 
sarmenhb's Avatar
 
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
sarmenhb is on a distinguished road
Default show me your funny little app

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);

}
__________________
no signature set
sarmenhb is offline  
Reply With Quote