Multiple tr in a tbody

Multiple tr in a tbody

pixelwolfiepixelwolfie Posts: 2Questions: 0Answers: 0
edited December 2012 in General
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 discussion has been closed.