Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6587809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:57:57+00:00 2026-05-25T16:57:57+00:00

I’m using the following code to grab my form’s data and send to MYSQL:

  • 0

I’m using the following code to grab my form’s data and send to MYSQL:

$id=$_POST['id'];
$tag=$_POST['tag']; 
$race=$_POST['race']; 
$city=$_POST['city']; 
$pic=($_FILES['photo']['name']);

and inserting it into my table using:

mysql_query("INSERT INTO `people` VALUES ('$id', '$tag', '$race', '$city', '$pic')") ;

My problem is that I need to allow users to enter multiple values (separated by commas or spaces) into the ‘tag’ field of my form to allow for multiple people to be tagged in the same image.

So I have 2 questions. First, is it best practice to create entirely new database entries for each ‘bib’ tag? Or would it be better to store the comma delimited list in a single column?
Secondly, I have been advised to use the explode function. However, I haven’t been able to figure out how to translate this into my current INSERT query. If anyone could steer me in the right direction, I’d really appreciate it. Very new to PHP and just trying to teach myself some basics.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T16:57:58+00:00Added an answer on May 25, 2026 at 4:57 pm

    So I have 2 questions. First, is it best practice to create entirely new database entries for each ‘bib’ tag? Or would it be better to store the comma delimited list in a single column?

    Storing a comma-separated list in a database column is generally a mistake. It will make it very hard to write queries that try to find out (for example) which images a given person has been tagged in. You should read up on database normalisation. Ordinarily what you will do in a case like this, where a given photo can contain arbitrarily many people, is have a table image_person with two columns: one column specifies the image ID, and the other column specifies a person. A row in the table corresponds to the statement “this person has been tagged in this image”. This makes it much easier to query the information you have stored.

    Secondly, I have been advised to use the explode function.

    Assuming that you do not go for the comma-separated list approach (as I would recommend), the only place you might need to use explode in this code is if you pass the list of people to be tagged as a comma-separated list in one of the POST variables. In that case you might do something like:

    $tags = explode(',', $_POST['tags']);
    

    You could then take either of two approaches:

    • loop through all of the tags at an appropriate point in the code, and issue an INSERT query at each pass through the loop
    • construct a single INSERT query that adds all the tags at once.

    Additional comment

    Please read about SQL injection and make sure that you write secure code. The code you posted in your question is highly insecure.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want use html5's new tag to play a wav file (currently only supported
We're building an app, our first using Rails 3, and we're having to build
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
We are using XSLT to translate a RIXML file to XML. Our RIXML contains

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.