Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
  2. echo "
  3. <tr onclick="openDetails(" . $row['id'] . ")"> //openDetails() does nothing for now…
  4. <td>" . $row['id'] . "</td>
  5. <td>" . $row['ser'] . "</td>
  6. <td>" . $row['part'] . "</td>
  7. <td>" . $row['model'] . "</td>
  8. <td>" . $row['make'] . "</td>
  9. <td>" . $row['description'] . "</td>
  10. <td>" . $row['price'] . "</td>
  11. </tr>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement