Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am developing an application to store images for induvidual users(like flickr.com) in mysql database using php. for that i need to create a table for each users when they done signup itself and store their images into their own table.anyone can help me please!

share|improve this question
What exactly is your question? What are you stuck with? – Pekka 웃 Jul 26 '12 at 6:11
Show us what have you tried so far – asprin Jul 26 '12 at 6:13
4  
Do not create a new table for each user. Create one table that holds the user's unique id, the photo's unique id, and any other information you'd like to store (date uploaded, approval flag, etc). – Jeff Jul 26 '12 at 6:28

closed as not a real question by Kev Jul 26 '12 at 22:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

create a table to store image using datatype blob , this datatype stores bigger objects into database.

query should be like this

CREATE TABLE tbl_images (image blob NOT NULL );

now do necessary things to connect to mysql sever through PHP, it is mandatory

now write code to open & read file

       // store the uploaded file in a temporary variable
      $tmpName  = $_FILES['image']['tmp_name'];  

      // Read the file 
      $fp     = fopen($tmpName, 'r');
      $data = fread($fp, filesize($tmpName));
      $data = addslashes($data);
      fclose($fp);


      // Create the query and insert
      // into our database.
      $query = "INSERT INTO tbl_images VALUES ('$data')";
      $results = mysql_query($query);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.