Multiple tr in a tbody
Multiple tr in a tbody
![pixelwolfie](https://secure.gravatar.com/avatar/42a6bc6e4bf6b50876cbc046119a792d/?default=https%3A%2F%2Fvanillicon.com%2F42a6bc6e4bf6b50876cbc046119a792d_200.png&rating=g&size=120)
Hi, I have this table which gets its data from my sql database. I run a jquery function to enable users to view row details upon clicking on an icon. I have 2 inside my . I had given my row details a class of its own so that the jquery function can call it out. Right now, Data tables isn't showing up.
This is my code:
[code]
Details
Id
Name
Address
Shipped
<?php
while ($row = mysqli_fetch_array($result)) {
?>
<?=$row['name']?>
<?=$row['address']?>
Item IdItem DescriptionQuantityPrice1<?=$row['product']?><?=$row['quantity']?><?=$row['price']?>
<?php
}
?>
[/code]
Thanks!
This is my code:
[code]
Details
Id
Name
Address
Shipped
<?php
while ($row = mysqli_fetch_array($result)) {
?>
<?=$row['name']?>
<?=$row['address']?>
Item IdItem DescriptionQuantityPrice1<?=$row['product']?><?=$row['quantity']?><?=$row['price']?>
<?php
}
?>
[/code]
Thanks!
This discussion has been closed.