ACC SHELL

Path : /srv/www/vhosts/amk/admin/
File Upload :
Current File : /srv/www/vhosts/amk/admin/test.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
	<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cz" lang="cz">
		<head>
			<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
			<meta http-equiv="cache-control" content="no-cache"/>
			<link rel="stylesheet" type="text/css" href="admin.css" media="screen"/>
			<title>AMK Brno - administrační sekce </title>
		</head>
	<body>
<?php
return;

require("common.php");

init_db();//"localhost", "amkbrno", "root", "");

$result = mysql_query("SELECT news_id, headline, perex, added_on, published FROM news WHERE 1 ORDER BY news_id");

while($row = mysql_fetch_row($result))
{
	echo "<pre>"; print_r($row); echo "</pre>";
	echo "<br>";
}

close_db();

?>
</body>
</html>

ACC SHELL 2018