Uh.. I'm so confused, I think somehow my server is using an old file because it's not echoing at the end or using the vairbles or for loop but is running an old script, I've checked the name and where I'm uploading this twice but that doesn't seem the be the problem... any ideas?
<?php
//Connect
include("common.php");
mysql_connect("$h","$u","$p");
mysql_select_db("$db");
//Make some variables
$theid = 2;
$thename = Gothic Gauntlets;
//For loop
for($x=0; $x < 10; $x++){
$randid = rand(-99999999,9999999);
mysql_query("insert into existing_items(id,i_id,i_name,i_owner) values('".$randid."','".$theid
."','".$thename."','Gaia')");
echo "Made item #<b>";
echo $x;
echo "</b>!/<br>";
}
?>