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

  • Home
  • SEARCH
  • 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 7766377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:24:02+00:00 2026-06-01T15:24:02+00:00

I have a table, called ‘files’, where I store file_id’s. Basically, users on my

  • 0

I have a table, called ‘files’, where I store file_id’s. Basically, users on my website can upload files to my website, and when a user uploads a file, all that file’s info gets uploaded to my table.

Anyways, I’m working on a file manager where the users may see all the files that they have uploaded, edit the name of the file, delete the file, etc.

How I’ve done this is, when the file is uploaded, the user’s unique id is uploaded along with the row with the unique file id.

So all I have to do for my file manager is match up the user’s id with however many rows have said user’s id in them, then display each file on the file manager page.

What is the easiest way to do this?

This is as far as I’ve gotten. Not great, I know.

$checkfiles = mysql_query("SELECT * FROM repository WHERE userid = '$useridtemp'") or die(mysql_error()); 
$fileinfo = mysql_fetch_array($checkfiles);
  • 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-06-01T15:24:04+00:00Added an answer on June 1, 2026 at 3:24 pm

    You’re basically there:

    $user_id_safe = AddSlashes($useridtemp);
    $result = mysql_query("SELECT * FROM repository WHERE userid = '$user_id_safe'");
    while ($row = mysql_fetch_array($result)){
        # this loop will run once for each found row, in $row
        print_r($row);
    }
    

    Just added an escape for the user id to avoid sql injection attacks, and loop over the returned rows.

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

Sidebar

Related Questions

i have table called users , if i want to delete some user (User
I have table called page which represents every single page in my website. page_id
I have a table called users, with a field full_name. most of the entries
I have a table called USERS that has a foreign key to the table
I have table of users called users and log table called ulog . Every
In my db I a have table called users. In that table I have
I have a table called jobs and I can get data out of the
I have a table called user_details this table has got morethan 100k user details
I have table called location with a field area. This field can contain various
I have table called users and I want to make an exact copy as

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.