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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:12:29+00:00 2026-05-24T23:12:29+00:00

I have a database with some tables and columns. I want to create a

  • 0

I have a database with some tables and columns.
I want to create a multidimensional array in PHP to store these values.

$tableData = array(array()); // I try to set up the multidimensional array.

/* 1: Get Table Names (works fine) */
    $result = mysql_query("SHOW TABLES FROM myDatabase");
    $i=0;
    while ($row = mysql_fetch_row($result)) 
    {                   
        // Push the table name into the PHP array
        array_push($tableData, $row[0]);
    }


/* 2: Columns */
    for ($i = 1; $i < count($tableNames); $i++)
    {
        $result = mysql_query("SHOW COLUMNS FROM $tableData[$i]");          
        while ($row = mysql_fetch_assoc($result)) 
        {
            array_push($tableData[$i], $row); // ** ERROR THROWN: first argument must be an array ** //
        }
    }

How can I do this? I feel like this should be simple, but I’ve spent the last 4 hours banging my head on my keyboard and google trying to figure it out… plenty of tutorial on putting a multidimensional array into a SQL, but not much for the other way around!

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-24T23:12:30+00:00Added an answer on May 24, 2026 at 11:12 pm

    you don’t need to array(array()) to set up a multidimensional array. just push other array as a value.

    try this:

    foreach ($tableNames as $tableName) 
    {
        $result = mysql_query("SHOW COLUMNS FROM $tableName");
        while ($row = mysql_fetch_assoc($result))
        {
            $tableData[$tableName] = $row;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a huge database with some 100 tables and some 250 stored procedures.
I have a Linux web server and I'd like to make some database tables
I have some code to update a database table that looks like try {
In legacy database tables we have numbered columns like C1, C2, C3, C100 or
I am trying to create some pages using PHP / MySQL. My database table
I have a database table full of some really ugly and messy data. In
I'm working on databases that have moving tables auto-generated by some obscure tools. By
I have a table in database that is having some fields one of which
i have some fields in my database table,and a field with phone name ,
I have to add some enum options to a database table. The problem being,

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.