Skip to content
Permalink
20a01d2abb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
28 lines (23 sloc) 604 Bytes
<?php
require("../dbCon.php");
require("../commonFunctions.php");
$orderID = $_GET['orderID'];
//echo "Welcome " . $_SESSION["userName"] . "!";
?>
<html>
<head>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div id="header">
<?php writeMenuEmp('eOrdersToFill.php'); ?>
</div>
<div id='contentwrapper'>
<?php
displayOrders(0, $orderID);
echo "<hr>";
displayOrderDetails($orderID);
?>
</div>
</body>
</html>