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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:31:45+00:00 2026-06-13T13:31:45+00:00

How can I make table in PHP with two columns and 10 variables for

  • 0

How can I make table in PHP with two columns and 10 variables for example (without loop)?

For example:

$var1= $row['name'];
$var2= $row['age'];

The way I want to show it in the table:

    ______________________
   | Customer Name | $var1|
   | Customer Age  | $var2|
  • 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-13T13:31:46+00:00Added an answer on June 13, 2026 at 1:31 pm

    Without loop:

    echo '
    <table>
      <tr>
        <td>Customer Name</td>
        <td>', $var1, '</td>
      </tr>
      <tr>
        <td>Customer Age</td>
        <td>', $var2, '</td>
      </tr>
      <tr>
        <td>Customer ...</td>
        <td>', $var3, '</td>
      </tr>
    </table>';
    

    With foreach loop

    $myFields = array("Customer Name" => $row['Name'], 
                      "Customer Age"  => $row['Age']);
    
    echo '<table><tr>';
    
    foreach($myFields as $field_title => $field_value)
       echo '<td>', $field_title, '</td>
             <td>', $field_value, '</td>';
    
    echo '</tr></table>';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a web-UI where users can enter a table name and
I have two questions: 1. How can I make my table rows clickable and
Can someone tell me how I can make a table be 100% height in
How can I make a table with a round border, similar to the photo
So I wanted to create a toggle-button for a table, where I can make
How can I make a mysql dump for table from a query? I need
In the table below, the entire cells are hyperlinks. How can I make just
I'm trying to make a cgridview that can filter data from relations table. This
I need a php function that can randomly select one row that has a
I’m trying to display two columns in my table view, one being a title

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.