KOD
E sad pitanje :
1. Zasto je footer iznad tabele ?
2. Kako da u foldere Delete Edit i Post dodam dugmice
Zanemarite text upisan u tabelu xD
PHP:
<?php
/**
* MASTER LOGIN SYSTEM
* @author Mihai Ionut Vilcu ([email protected])
* June 2013
*
*/
include "../inc/init.php";
include "../lib/pagination.class.php";
include "../lib/project.class.php";
if(!$user->isAdmin()) {
header("Location: $set->url");
exit;
}
$page->title = "Pending projects ". $set->site_name;
mysql_connect ("localhost","root","") or die (mysql_erorr());
mysql_select_db ("mysql") or die (mysql_error());
$result = mysql_query("SELECT * FROM `ctvv_projects`");
include "../header.php";
print "<center><table border=1 class=table width=80%>
<tr>
<td>ID</td>
<td>Category</td>
<td>Project name</td>
<td>Description</td>
<td>Max budget</td>
<td>Delete</td>
<td>Edit</td>
<td>Post</td>
</tr>";
while($row=mysql_fetch_array($result))
{
print "<tr>";
for ($i=0;$i<=(count($row)/2);$i++)
{
print "<td>$row[$i]</td>";
} print"</tr>";
}
echo
include "../footer.php";
?>
1. Zasto je footer iznad tabele ?
2. Kako da u foldere Delete Edit i Post dodam dugmice
Zanemarite text upisan u tabelu xD
Prilozi
Poslednja izmena: