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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:18:28+00:00 2026-05-18T20:18:28+00:00

I have a HTML page. Clicking on one link within the page runs a

  • 0

I have a HTML page. Clicking on one link within the page runs a php function which adds a HTML table to the page (implemented with AJAX, php function is in a separate php file).

Now, I have a button on the page which is supposed to run another php function which should pick up the data from the table and do something with it. I don’t know how to get the data from the table because:

  1. I don’t know how to reference (get) a HTML element through php.
  2. My php function is in a separate file.

What if I put everything from the table in POST or GET arguments? Is there a way to reference the table and iterate its rows and get the data that way? 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-18T20:18:29+00:00Added an answer on May 18, 2026 at 8:18 pm

    This is not a job for PHP, you should use Javascript to capture the table contents and then manipulate them whatever way you would like. If on the other hand the table contents never change then you can just put them into your PHP function.

    You can pull the values of the table by first setting an ID for the table like so:

    <table id="someTable">
    <tr id="someRow">
        <td>Data</td>
        <td>Data2</td>
    </tr>
    </table>
    

    Then you can call the values from the table using JavaScript:

    var row = document.getElementById("someRow");
    var cellValues = row.getElementsByTagName("td");
    

    This will put all of the cells into an array. Then you can put them into variables.

    var firstCell = cellValues[0].innerText;
    var secondCell = cellValues[1].innerText;
    

    Then you can put it into an AJAX Request and send it to your PHP function to be processed.

    This will send a GET or POST request to yourfile.php and then you can manipulate the cell rows in whatever manner you would like and send back a result by echoing it out in the PHP file. You can retrieve the results by making the callback function.

    Hope this helps,
    Chris

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

Sidebar

Related Questions

I have a HTML page. Clicking on one link within the page runs a
I have an html page with one or more textareas, each of which has
how can i do. i have many html elements on page. after clicking on
I have an HTML page (say welcome.html) which contains an iframe to a page
I have a HTML page with which I want to do some client side
I have a dynamic web page that after clicking a link, I insert a
I have HTML page, which gives an option to upload a file to the
I have seen websites which load a index.html page containing the header, footer etc,
I have a PHP page, that on clicking the submit button process a few
I have a UIWebView which loads an HTML page which has some links to

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.