Server-side is your best option, using PHP in this case. What I'll be doing is storing the data in a variable and sending it to another PHP page which recieves the variable contents. It's fairly simple.
Give your carbon td a "name" attribute:
Code:
<td class="carbon" name="carbonData">4544 tons / 2285 tons</td>
Now before we go into the next part, I'm assuming you are using a form outside your table:
Code:
<form action="newpage.php" method="post">
<table id="summary_totals">
<tbody>
<tr class="totals">
<td class="total_label">Your Totals</td>
<td class="money"> $-21850.00 / $385.53 </td>
<td class="time"> 0 hrs / 0 hrs</td>
<td class="carbon">4544 tons / 2285 tons</td>
</tr>
</table>
<input type="submit" value="Go to page">
</form>
The above button in red will send you to your result page.
When you go to your result page (in this case newpage.php), make these adjustments:
Code:
<td class="custom_qty"><?php
$dat = $_POST["carbonData"];
echo $dat;
?></td>
Hopefully this helps
Bookmarks