Jump to content

[SOLVED] Skipping columns?


TGWSE_GY

Recommended Posts

Okay I am storing images in a mysql table the table setup looks like this:

Field                Type     Collation         Null    Key     Default  Extra           Privileges            Comment
-------------------  -------  ----------------  ------  ------  -------  --------------  --------------------  -------
CustID               int(9)   (NULL)            NO              (NULL)                   select,insert,update         
ImageID              int(50)  (NULL)            NO      PRI     (NULL)   auto_increment  select,insert,update         
ImageType            text     ascii_general_ci  YES             (NULL)                   select,insert,update         
Image                blob     (NULL)            YES             (NULL)                   select,insert,update         
DefaultProfileImage  int(1)   (NULL)            YES             (NULL)                   select,insert,update         

I am wanting to skip ImageID and DefaultProfileImage in my mysql insert statement, and here is the insert statement:

mysql_query("INSERT INTO profile_user_images ( CustID,ImageType,Image ) VALUES ($CustID, $Image1Type, $EncodedImage1");
}

I thought by not including the column names that mysql would skip them but I was wrong because the record is not even posting.

 

Thanks 8)

Link to comment
Share on other sites

here is the correct mysql query

mysql_query("INSERT INTO profile_user_images ( CustID,ImageType,Image ) VALUES ('$CustID', '$Image1Type', '$EncodedImage1')");

 

and it is still not posting. I am confused because I am not new at this and it should be working

Link to comment
Share on other sites

Try dislplaying error message, so that we know what it complains about

 

sql_query("INSERT INTO profile_user_images ( CustID,ImageType,Image ) VALUES ('$CustID', '$Image1Type', '$EncodedImage1')") or die(mysql_error());

Link to comment
Share on other sites

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.