Пример #1
0
<?php

require_once '../../models/Suppliers.php';
$results = Suppliers::GetAll();
?>


<!DOCTYPE html>
<html lang="en">
	<?php 
include '../../inc/head.php';
?>
	<body>
		<div>
			<?php 
include '../../inc/nav.php';
?>

			<div id="content">
				<table class="table table-bordered table-condensed table-hover table-striped">
					<tr>
						<th>Supplier Id</th><th>Company Name</th><th>Actions</th>
					</tr>
					
					<?php 
while ($row = $results->fetch_assoc()) {
    ?>
						<tr>
							<td><?php 
    echo $row['SupplierId'];
    ?>