[go: up one dir, main page]

Menu

[r10]: / ansMenuTable.php  Maximize  Restore  History

Download this file

26 lines (22 with data), 652 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
include('includes/databaseLogin.php');
include('includes/installedLanguage.php');
echo "<!DOCTYPE html>";
?>
<html>
<head>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<?php
if(isset($_POST[sCode])){
echo "<li><a href=\"#\" class=\"aUnaOpen\">" . _T("Unanswered questions") . "</a></li>";
echo "<li><a href=\"#\" class=\"aFaqOpen\">" . _T("FAQs") . "</a></li>";
echo "<li><a href=\"#\" class=\"aGoToLabel\">" . _T("Label management") . "</a></li>";
echo "<li><a href=\"#\" class=\"aGoToCC\">" . _T("Back to customer care") . "</a></li>";
}else{
//Error
}
?>
</body>
</html>