I am running this right now:
$conn = mysql_connect($host,$user,$pass) or die(mysql_error());
mysql_select_db($database) or die(mysql_error());
for ($i = 0; $i <= 20; $i++) {
mysql_query("INSERT INTO my_table(user_id) values('$i')");
}
The problem is, it creates rows from 1-20. I need rows from 1500-1999 though. How would I do that?