Jump to content

Recommended Posts

I am getting a "Error, insert query failed"  anyone see what I am doing wrong?

<?PHP

 

mysql_connect("#", "#", "#") or die(mysql_error());

mysql_select_db("#") or die(mysql_error());

 

$zone = "4";

 

for ( $counter = 1; $counter < 239; $counter += 1) {

 

echo $counter;

 

$query= "INSERT INTO zones_to_geo_zones (association_id,zone_country_id,zone_id,geo_zone_id,last_modified,date_added) VALUES ('$counter','$counter', '0' ,'$zone','0', '0')";

 

mysql_query($query) or die('Error, insert query failed');

}

 

?>

Link to comment
https://forums.phpfreaks.com/topic/171823-solved-help-with-for-loop/
Share on other sites

Add a mysql_error and tell us the output:

 

<?php

mysql_connect("#", "#", "#") or die(mysql_error());
mysql_select_db("#") or die(mysql_error());

$zone = "4";

for ( $counter = 1; $counter < 239; $counter += 1) {

echo $counter;

$query= "INSERT INTO zones_to_geo_zones (association_id,zone_country_id,zone_id,geo_zone_id,last_modified,date_added) VALUES ('$counter','$counter', '0' ,'$zone','0', '0')"; 

mysql_query($query) or die('Error, insert query failed because: '.mysql_error());
}

?>

change your die to

die('Error, insert query failed: ' . mysql_error());

 

and see what error you get. If some of those columns are integer or other numeric types of columns, I don't think you can have single quotes around their insert values

 

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.