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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:21:13+00:00 2026-06-05T05:21:13+00:00

From my understanding, the only way to retrieve $_POST data is using the name

  • 0

From my understanding, the only way to retrieve $_POST data is using the name attribute of the element, like so:

<INPUT type="text" name="txt">

and the PHP portion:

<?php $text = $_POST["txt"]; ?>

I’ve got a table with cells containing plain text, for example:

<td class="textField" id="txt1"> Some text </td>

Is there anyway to post the text in these table cells and retrieve them using either the class or id? Maybe there is a clever way to get around this? <td> doesn’t have a name attribute thus the reason for my question.

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-06-05T05:21:15+00:00Added an answer on June 5, 2026 at 5:21 am

    The solution that ended up working for me was to grab the data using jQuery, encode it in JSON, and add it to a serial array of the rest of the form data.

    $("#orderForm").submit(function(e) {
        e.preventDefault();
    
        // Get NON-INPUT table cell data
        var subtotal = new Array();
        $('#priceTable td.subtotal').each(function() {
            subtotal.push($(this).html());
        });
    
        // Get all INPUT form data and organize as array
        var formData = $(this).serializeArray();
    
        // Encode with JSON
        var subArray = JSON.stringify(subtotal);
    
        // Add to formData array
        formData.push({name: 'sub', value: subArray});
    
        // Submit with AJAX
        $.ajax({
            url: "submitOrder.php",
            data: formData,
            type: 'post',
            success: function(data) {
                alert(data);
            }
        });
    });
    

    And on the PHP side:

    $subtotals = json_decode($_POST['sub']);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

From what little understanding of Cassandra I have, it seems that data locality is
From a little bit of reading around, it is my understanding that the only
Okay, so basically I want to be able to retrieve keyboard text. Like entering
From my understanding, each of these methods: get() and put() are atomic. But, when
From my understanding of the docs this general approach should work: begin try1 rescue
From my understanding by reading several articles I assumed Process Address Space(PAS) and Virtual
MariaDB 5.3 introduced dynamic columns. From my understanding the next version of mysql should
I have some not understanding actions from gnu clisp Suppose, I have some code
My understanding is that it's advised testers are separate from developers, i.e you obviously
It is my understanding that although Mercurial has support from branches, the community generally

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.