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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T03:17:54+00:00 2026-05-18T03:17:54+00:00

I am using PHP5 and MySql, I wondered if there was a way of

  • 0

I am using PHP5 and MySql, I wondered if there was a way of setting variables automatically instead of writing them all out?

I am currently using code such as this:

$sSQL = "SELECT * FROM myTable";
$result = mysqli_query($dbi,$SQL); 

if(mysqli_num_rows($result)==0){} 
else 
 {
   //loop and set array
   while ($row = mysqli_fetch_assoc($result)) {
     $field1 = $row['field1'];
     $field2 = $row['field2'];
     $field3 = $row['field3']; 
   }

  $newArray[] = (array(
        "field1" => "$field1",
        "field2" => "$field2",
        "field3" => "$field3"
      ));

Basically I am setting the variables to the same name as the SQL field names, and then setting an array to the same. I was wondering if there was a quicker way of doing this that writing out all the names by hand? (I also know the select is bad, it’s just there for illustration!)

  • 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-18T03:17:55+00:00Added an answer on May 18, 2026 at 3:17 am

    One option is to use explicit field names in the SQL query and assign each result row directly. Besides, selecting columns with * reduces performance and makes the intent of your query less clear.

    $sSQL = "SELECT field1, field2, field3 FROM myTable";
    
    // other code
    
    while ($row = mysqli_fetch_assoc($result)) {
        $newArray[] = $row;
    }
    

    However, if you simply want variables to be created dynamically then extract() might do the trick.

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

Sidebar

Related Questions

I'm used to web development using LAMP, PHP5, MySQL plus NetBeans with Xdebug. Now
I'm using PHP5 and MySQL. I'm using mysql_...() functions.
If you are using php5 and mysql5, is there a substantial advantage to using
I am using php5.3.6 and mysql 5.1.56 and CodeIgniter. Here is what I did.
Hi I'm new to php mysql development. I'm using wamp server on windows. php5.3.4,
Using php5.2 and MySQL 4.1.22 I've come across something that, at first, appeared simple
Hey This is my login script, using PHP5 and MYSQLi, I just had help
I'm using MySQLi with PHP(5.2.4) MySQL(5.0.51a) on Ubuntu 8.04 LAMP. The relevant Db tables
I'm building a web application using PHP5.3 and Zend Framework 1.9.4. i have an
EDIT 2: I'd like to convert English words to unicode numbers using php5 and

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.