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 7443209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T11:17:46+00:00 2026-05-29T11:17:46+00:00

I have a MySQL database full of user information, like their username, password, email,

  • 0

I have a MySQL database full of user information, like their username, password, email, etc.

I want a PHP script that allows me to pull JUST their username and display it like so:

“username1″,”username2″,”username3”

Literally exactly like that, the quotes and all.

EDIT: Sorry for not supplying enough information.

The table is named “users” the field I want to pull off it is “username” I can get it to pull and display all the information, my only problem is imploding it.

  • 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-29T11:17:47+00:00Added an answer on May 29, 2026 at 11:17 am

    OK dude, read the comments

    <?php // open a php tag
    
    $dbc = mysql_connect("host", "username", "password"); // connect to database
    mysql_select_db("db_name", $dbc) // select the database
    
    $sql = "SELECT `username` FROM `users_table`"; // select only the username field from the table "users_table"
    $result = mysql_query($sql); // process the query
    
    $username_array = array(); // start an array
    
    while($row = mysql_fetch_array($result)){ // cycle through each record returned
      $username_array[] = "\"".$row['username']."\""; // get the username field and add to the array above with surrounding quotes
    }
    
    $username_string = implode(",", $username_array); // implode the array to "stick together" all the usernames with a comma inbetween each
    
    echo $username_string; // output the string to the display
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a MySQL database full of user information. I'd like to give it
I have a full backup MYSQL database. mysqldump -u root --password=SSS -A > D:\bkps\mysql.sql
I have a database full of php time(); stored when a user logs in.
I have mysql database like this id | code 1 | bok-1 2 |
I have mysql database and I want a software which can draw the database
I have mysql database structure like below: CREATE TABLE test ( id int(11) NOT
Here my code, I need to insert into mysql database I have mysql,php,android 1)
I have a MySQL database table called Participant that looks something like this: (idParticipant)
I have an array full of user logins that was loaded from the database.
I have a MYSQL full text search, matching against items in my database, which

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.