04-29-2008, 03:26 AM
|
#1 (permalink)
|
|
The Addict
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
|
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
|
|
|
|