<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Admin</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<style media="all" type="text/css">@import "css/all.css";</style>
</head>
<body>
<div id="main">
<div id="header">
<a href="index.html" class="logo"><img src="img/logo.gif" width="101" height="29" alt="" /></a>
<ul id="top-navigation">
<li class="active"><span><span>Pocetna</span></span></li>
<li><span><span><a href="#">Korisnici</a></span></span></li>
<li><span><span><a href="#">Narudzbe</a></span></span></li>
<li><span><span><a href="#">Podesavanja</a></span></span></li>
<li><span><span><a href="#">Statistika</a></span></span></li>
<li><span><span><a href="#">Sadrzaj</a></span></span></li>
</ul>
</div>
<div id="middle">
<div id="left-column">
<h3>Infooooo</h3>
<ul class="nav">
<li><a href="#">Lorem Ipsum dollar</a></li>
<li><a href="#">Dollar</a></li>
<li><a href="#">Lorem dollar</a></li>
<li><a href="#">Ipsum dollar</a></li>
<li><a href="#">Lorem Ipsum dollar</a></li>
<li class="last"><a href="#">Dollar Lorem Ipsum</a></li>
</ul>
<a href="#" class="link">Link here</a>
<a href="#" class="link">Link here</a>
</div>
<div id="center-column">
<div class="top-bar">
<a href="#" class="button">ADD NEW </a>
<h1>Contents</h1>
<div class="breadcrumbs"><a href="#">Homepage</a> / <a href="#">Contents</a></div>
</div><br />
<div class="select-bar">
<label>
<input type="text" name="textfield" />
</label>
<label>
<input type="submit" name="Submit" value="Search" />
</label>
</div>
<div class="table">
<img src="img/bg-th-left.gif" width="8" height="7" alt="" class="left" />
<img src="img/bg-th-right.gif" width="7" height="7" alt="" class="right" />
<table class="listing" cellpadding="0" cellspacing="0">
<tr>
<?php
$con = mysql_connect("localhost","root","root");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("users", $con);
$result = mysql_query("SELECT imePrezime, mjesto FROM users");
while($row = mysql_fetch_array($result))
{
echo "<td>" . $row['imePrezime'] . "</td>"; } ?>
<td><img src="img/add-icon.gif" width="16" height="16" alt="" /></td>
<td><img src="img/hr.gif" width="16" height="16" alt="" /></td>
<td><img src="img/save-icon.gif" width="16" height="16" alt="" /></td>
</tr>
</table>
<div class="select">
<strong>Other Pages: </strong>
<select>
<option>1</option>
</select>
</div>
</div>
<div class="table">
<img src="img/bg-th-left.gif" width="8" height="7" alt="" class="left" />
<img src="img/bg-th-right.gif" width="7" height="7" alt="" class="right" />
<table class="listing form" cellpadding="0" cellspacing="0">
<tr>
<th class="full" colspan="2">Header Here</th>
</tr>
<tr>
<td class="first" width="172"><strong>Lorem Ipsum</strong></td>
<td class="last"><input type="text" class="text" /></td>
</tr>
<tr class="bg">
<td class="first"><strong>Lorem Ipsum</strong></td>
<td class="last"><input type="text" class="text" /></td>
</tr>
<tr>
<td class="first""><strong>Lorem Ipsum</strong></td>
<td class="last"><input type="text" class="text" /></td>
</tr>
<tr class="bg">
<td class="first"><strong>Lorem Ipsum</strong></td>
<td class="last"><input type="text" class="text" /></td>
</tr>
</table>
<p> </p>
</div>
</div>
<div id="right-column">
<strong class="h">INFO</strong>
<div class="box">Detect and eliminate viruses and Trojan horses, even new and unknown ones. Detect and eliminate viruses and Trojan horses, even new and </div>
</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>