function _edit_score($OID = 0, $CID = 0)
{
    loginRequireMgmt();
    if (!loginCheckPermission(USER::MGMT_TEAM)) {
        redirect("errors/401");
    }
    $item = "Team";
    $urlPrefix = "mgmt_team";
    $object = new Team();
    $object->retrieve($OID, $CID);
    if (!$object->exists()) {
        $data['body'][] = "<p>{$item} Not Found!</p>";
    } else {
        $fdata['form_heading'] = "Edit {$item} Score";
        $fdata['object'] = $object;
        $fdata['actionUrl'] = myUrl("{$urlPrefix}/ops_update_score");
        $fdata['actionLabel'] = "Submit";
        $fdata['cancelUrl'] = myUrl("{$urlPrefix}/manage");
        $fdata['cancelLabel'] = "Cancel";
        $form = View::do_fetch(VIEW_PATH . "{$urlPrefix}/score_form.php", $fdata);
        $data['head'][] = View::do_fetch(VIEW_PATH . "{$urlPrefix}/score_form_js.php");
        $data['body'][] = "<h2>Edit {$item} Score</h2>";
        $data['body'][] = $form;
    }
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#2
0
function _make_html_table($n, &$data)
{
    $dbh = getdbh();
    //pagination
    $stmt = $dbh->query('SELECT count(OID) total FROM t_user');
    $total = $stmt->fetchColumn();
    $limit = $GLOBALS['pagination']['per_page'];
    $data['body'][] = '<p>Showing records ' . ($n + 1) . ' to ' . min($total, $n + $limit) . ' of ' . $total . '</p>';
    $data['body'][] = pagination::makePagination($n, $total, myUrl('mgmt_user/manage'), $GLOBALS['pagination']);
    //table
    $stmt = $dbh->query("SELECT OID,CID,permissions,username,fullname FROM t_user LIMIT {$n},{$limit}");
    $tablearr[] = explode(',', 'username,roll,fullname');
    while ($rs = $stmt->fetch(PDO::FETCH_ASSOC)) {
        $OID = $rs['OID'];
        $CID = $rs['CID'];
        $row = null;
        $row['username'] = htmlspecialchars($rs['username']);
        $row['roll'] = htmlspecialchars(User::getPermissionsAsRollText($rs['permissions']));
        $row['fullname'] = htmlspecialchars($rs['fullname']);
        $row[] = '<a href="' . myUrl("mgmt_user/edit/{$OID}/{$CID}") . '">Edit</a> | <a href="javascript:jsconfirm(\'Really Delete User?\',\'' . myUrl("mgmt_user/ops_delete/{$OID}/{$CID}") . '\')">Delete</a>';
        $tablearr[] = $row;
    }
    $data['body'][] = table::makeTable($tablearr);
    $data['head'][] = '<script type="text/javascript" src="' . myUrl('js/jsconfirm.js') . '"></script>';
}
示例#3
0
function _make_user_table($n, &$data)
{
    $dbh = getdbh();
    //pagination
    $stmt = $dbh->query('SELECT count(*) "total" FROM "users"');
    $rs = $stmt->fetch(PDO::FETCH_ASSOC);
    $total = $rs['total'];
    $limit = $GLOBALS['pagination']['per_page'];
    $data['body'][] = '<p>Showing records ' . ($n + 1) . ' to ' . min($total, $n + $limit) . ' of ' . $total . '</p>';
    $data['body'][] = pagination::makePagination($n, $total, myUrl('users/manage'), $GLOBALS['pagination']);
    //table
    $stmt = $dbh->query("SELECT * FROM \"users\" LIMIT {$n},{$limit}");
    $tablearr[] = explode(',', 'uid,username,password,fullname,created_dt,Action');
    while ($rs = $stmt->fetch(PDO::FETCH_ASSOC)) {
        $uid = $rs['uid'];
        $row = null;
        foreach ($rs as $k => $v) {
            $row[$k] = htmlspecialchars($v);
        }
        $row[] = '<a href="' . myUrl("users/edit/{$uid}") . '">Edit</a> | <a href="javascript:jsconfirm(\'Really Delete User?\',\'' . myUrl("users/ops_delete/{$uid}") . '\')">Delete</a>';
        $tablearr[] = $row;
    }
    $data['body'][] = table::makeTable($tablearr);
    $data['head'][] = '<script type="text/javascript" src="' . myUrl('js/jsconfirm.js') . '"></script>';
}
示例#4
0
function _show($OID = 0, $CID = 0)
{
    loginRequireMgmt();
    if (!loginCheckPermission(USER::MGMT_HMB_DATA)) {
        redirect("errors/401");
    }
    $item = "HMB Data";
    $urlPrefix = "mgmt_hmb_data";
    $object = new HMBData();
    $object->retrieve($OID, $CID);
    if (!$object->exists()) {
        $data['body'][] = "<p>{$item} Not Found!</p>";
    } else {
        $fdata['form_heading'] = "Test {$item} -- Todo remove this";
        $fdata['object'] = $object;
        $fdata['actionUrl'] = myUrl("{$urlPrefix}/ops_update");
        $fdata['actionLabel'] = "Submit";
        $fdata['cancelUrl'] = myUrl("{$urlPrefix}/manage");
        $fdata['cancelLabel'] = "Back";
        $form = View::do_fetch(VIEW_PATH . "{$urlPrefix}/show.php", $fdata);
        //$data['head'][]=View::do_fetch(VIEW_PATH."$urlPrefix/form_js.php");
        $data['body'][] = "<h2>Show {$item}</h2>";
        $data['body'][] = $form;
    }
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#5
0
function _make_html_table($table, $item, $urlPrefix, $n, &$data)
{
    $dbh = getdbh();
    //pagination
    $stmt = $dbh->query("SELECT count(OID) total FROM {$table}");
    $total = $stmt->fetchColumn();
    $limit = $GLOBALS['pagination']['per_page'];
    $data['body'][] = '<p>Showing records ' . ($n + 1) . ' to ' . min($total, $n + $limit) . ' of ' . $total . '</p>';
    $data['body'][] = pagination::makePagination($n, $total, myUrl("{$urlPrefix}/manage"), $GLOBALS['pagination']);
    //table
    $fields = "URL,stationId,lastContact,debug";
    $stmt = $dbh->query("SELECT OID,CID,{$fields} FROM {$table} LIMIT {$n},{$limit}");
    if ($stmt === false) {
        var_dump($dbh->errorInfo());
        return;
    }
    $tablearr[] = explode(',', $fields);
    while ($rs = $stmt->fetch(PDO::FETCH_ASSOC)) {
        $OID = $rs['OID'];
        $CID = $rs['CID'];
        $row = null;
        foreach ($tablearr[0] as $f) {
            $row[] = htmlspecialchars($rs[$f]);
        }
        $row[] = '<a href="' . myUrl("{$urlPrefix}/ops_reset/{$OID}/{$CID}") . '">Reset</a> | ' . '<a href="' . myUrl("{$urlPrefix}/ops_shutdown/{$OID}/{$CID}") . '">Shutdown</a> | ' . '<a href="' . myUrl("{$urlPrefix}/edit/{$OID}/{$CID}") . '">Edit</a> | ' . '<a href="javascript:jsconfirm(\'Really Delete ' . $item . '?\',\'' . myUrl("{$urlPrefix}/ops_delete/{$OID}/{$CID}") . '\')">Delete</a>';
        $tablearr[] = $row;
    }
    $data['body'][] = table::makeTable($tablearr);
    $data['head'][] = '<script type="text/javascript" src="' . myUrl('js/jsconfirm.js') . '"></script>';
}
function redirect($url, $alertmsg = '')
{
    if ($alertmsg) {
        addjAlert($alertmsg, $url);
    }
    header('Location: ' . myUrl($url));
    exit;
}
function _clear_scores()
{
    $fdata['actionUrl'] = myUrl('ops/clear_scores');
    $fdata['cancelUrl'] = myUrl('mgmt_main/index');
    $data['pagename'] = 'Clear Scores';
    $data['body'][] = '<h2>Warning Submitting this form will clear all scoring data the Database</h2><br/>';
    $data['body'][] = View::do_fetch(VIEW_PATH . 'mgmt_main/clear_scores_form.php', $fdata);
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#8
0
function _resetdb()
{
    $fdata['actionUrl'] = myUrl('ops/resetdb');
    $fdata['cancelUrl'] = myUrl('mgmt_main/index');
    $data['pagename'] = 'Reset Database';
    $data['body'][] = '<h2>Warning Submitting this form will reset the Database</h2><br/>';
    $data['body'][] = View::do_fetch(VIEW_PATH . 'mgmt_main/resetdb_form.php', $fdata);
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#9
0
function _loaddb()
{
    $fdata['actionUrl'] = myUrl('mgmt_cpa_data/ops_loaddb');
    $fdata['cancelUrl'] = myUrl('mgmt_cpa_data/index');
    $data['pagename'] = 'Load Database';
    $data['body'][] = '<h2>Warning Submitting this form will replace all existing CPS data in the Database</h2><br/>';
    $data['body'][] = View::do_fetch(VIEW_PATH . 'mgmt_cpa_data/loaddb.php', $fdata);
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#10
0
function _loaddb()
{
    if (!loginCheckPermission(USER::MGMT_EXT_DATA)) {
        redirect("errors/401");
    }
    $fdata['actionUrl'] = myUrl('mgmt_ext_data/ops_loaddb');
    $fdata['cancelUrl'] = myUrl('mgmt_ext_data/index');
    $data['pagename'] = 'Load Database';
    $data['body'][] = '<h2>Warning Submitting this form will replace all existing EXT data in the Database</h2><br/>';
    $data['body'][] = View::do_fetch(VIEW_PATH . 'mgmt_ext_data/loaddb.php', $fdata);
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#11
0
function _resetdb()
{
    $data['foot'][] = '<script type="text/javascript">
if (confirm("Really reset database?"))
  window.location="' . myUrl('ops/resetdb') . '";
else
  window.location="' . myUrl('main') . '";
</script>
';
    $data['body'][] = '<h2>Reset Database</h2>';
    $data['body'][] = '<p><strong>This will clear all existing user data and re-populate with some test data!</strong></p>';
    View::do_dump(VIEW_PATH . 'layouts/mainlayout.php', $data);
}
示例#12
0
function _manage($n = 0)
{
    loginRequireMgmt();
    $n = (int) $n;
    $data['body'][] = '<h2>Web Site</h2><br />';
    if (loginCheckPermission(USER::MGMT_WEBSITE)) {
        $data['body'][] = '<a href="' . myUrl("mgmt_website/website") . '">Edit Web Site Settings</a>';
        $data['body'][] = '<br>';
        $data['body'][] = '<a href="' . myUrl("mgmt_website/sysconfig") . '">Edit System Configuration</a>';
        $data['body'][] = '<br>';
        $data['body'][] = '<a href="' . myUrl("mgmt_website/documents") . '">Upload Documents (term of use)</a>';
    } else {
        $data['body'][] = '<p>You do not have permission for this operation';
    }
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#13
0
function _documents()
{
    loginRequireMgmt();
    $data['body'][] = '<h2>Documents</h2><br />';
    if (loginCheckPermission(USER::MGMT_WEBSITE)) {
        $fdata['form_heading'] = 'Manage Documents';
        $fdata['cancel'] = myUrl("mgmt_website/manage");
        $fdata['action'] = myUrl("mgmt_website/ops_documents_update");
        $form = View::do_fetch(VIEW_PATH . 'mgmt_website/documents_form.php', $fdata);
        //   	$data['head'][]=View::do_fetch(VIEW_PATH.'mgmt_website/documents_form_js.php');
        //    $data['head'][]='<script type="text/javascript" src="'.myUrl('js/isvalid.js').'"></script>';
        $data['body'][] = $form;
    } else {
        $data['body'][] = '<p>You do not have permission for this operation';
    }
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#14
0
function _index()
{
    $urlPrefix = "mock_rpi";
    $data['body'][] = '<h2>Mock rPI</h2><br />';
    $fdata['joinUrl'] = myUrl("{$urlPrefix}/sim_join");
    $fdata['joinLabel'] = "Join";
    $fdata['submitUrl'] = myUrl("{$urlPrefix}/sim_submit");
    $fdata['submitLabel'] = "Submit";
    //$fdata['timeExpiredUrl']=myUrl("$urlPrefix/sim_timeexpired");
    //$fdata['timeExpiredLabel']="Time Expired(HMB only)";
    $fdata['cancelUrl'] = myUrl("{$urlPrefix}/index");
    $fdata['cancelLabel'] = "Cancel";
    $form = View::do_fetch(VIEW_PATH . "{$urlPrefix}/mock_rpi.php", $fdata);
    //$data['head'][]=View::do_fetch(VIEW_PATH."$urlPrefix/form_js.php");
    $data['body'][] = $form;
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#15
0
function _add()
{
    loginRequireMgmt();
    if (!loginCheckPermission(USER::MGMT_USER)) {
        redirect("errors/401");
    }
    $object = new User();
    $fdata['form_heading'] = 'Add User';
    $fdata['object'] = $object;
    $fdata['actionUrl'] = myUrl('mgmt_user/ops_update');
    $fdata['actionLabel'] = "Submit";
    $fdata['cancelUrl'] = myUrl('mgmt_user/manage');
    $fdata['cancelLabel'] = "Cancel";
    $form = View::do_fetch(VIEW_PATH . 'mgmt_user/form.php', $fdata);
    $data['head'][] = View::do_fetch(VIEW_PATH . 'mgmt_user/form_js.php');
    $data['body'][] = '<h2>Add New User</h2>';
    $data['body'][] = $form;
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#16
0
function _index()
{
    $urlPrefix = "mock_brata";
    $data['body'][] = '<h2>Mock Brata</h2><br />';
    $fdata['registerUrl'] = myUrl("{$urlPrefix}/sim_register");
    $fdata['registerLabel'] = "Register";
    $fdata['startUrl'] = myUrl("{$urlPrefix}/sim_start_challenge");
    $fdata['startLabel'] = "Start Challenge";
    $fdata['submitUrl'] = myUrl("{$urlPrefix}/sim_submit");
    $fdata['submitLabel'] = "Submit";
    $fdata['atWaypointUrl'] = myUrl("{$urlPrefix}/sim_atwaypoint");
    $fdata['atWaypointLabel'] = "At Waypoint";
    $fdata['cpaMeasureUrl'] = myUrl("{$urlPrefix}/sim_cpaMeasure");
    $fdata['cpaMeasureLabel'] = "CPA Measure";
    $fdata['cancelUrl'] = myUrl("{$urlPrefix}/index");
    $fdata['cancelLabel'] = "Cancel";
    $form = View::do_fetch(VIEW_PATH . "{$urlPrefix}/mock_brata.php", $fdata);
    //$data['head'][]=View::do_fetch(VIEW_PATH."$urlPrefix/form_js.php");
    $data['body'][] = $form;
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
示例#17
0
function _add()
{
    loginRequireMgmt();
    if (!loginCheckPermission(USER::MGMT_TEAM)) {
        redirect("errors/401");
    }
    $object = new Team();
    $item = "Team";
    $urlPrefix = "mgmt_team";
    $fdata['form_heading'] = "Add {$item}";
    $fdata['object'] = $object;
    $fdata['actionUrl'] = myUrl("{$urlPrefix}/ops_update");
    $fdata['actionLabel'] = "Submit";
    $fdata['cancelUrl'] = myUrl("{$urlPrefix}/manage");
    $fdata['cancelLabel'] = "Cancel";
    $form = View::do_fetch(VIEW_PATH . "{$urlPrefix}/form.php", $fdata);
    $data['head'][] = View::do_fetch(VIEW_PATH . "{$urlPrefix}/form_js.php");
    $data['body'][] = "<h2>Add New {$item}</h2>";
    $data['body'][] = $form;
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
function _make_html_table($n, &$data)
{
    $dbh = getdbh();
    //pagination
    $stmt = $dbh->query('SELECT count(OID) total FROM t_event');
    $total = $stmt->fetchColumn();
    $limit = $GLOBALS['pagination']['per_page'];
    $data['body'][] = '<p>Showing records ' . ($n + 1) . ' to ' . min($total, $n + $limit) . ' of ' . $total . '</p>';
    $data['body'][] = pagination::makePagination($n, $total, myUrl('mgmt_main/manage'), $GLOBALS['pagination']);
    //table
    $stmt = $dbh->query("SELECT created_dt,teamId,stationId,points,data FROM t_event LIMIT {$n},{$limit}");
    $tablearr[] = explode(',', 'created_dt,teamId,stationId,points,data');
    while ($rs = $stmt->fetch(PDO::FETCH_ASSOC)) {
        $row = null;
        foreach ($tablearr[0] as $f) {
            $row[] = htmlspecialchars($rs[$f]);
        }
        $tablearr[] = $row;
    }
    $data['body'][] = table::makeTable($tablearr);
    $data['body'][] = '<p><a href="' . myUrl("mgmt_main") . '">Back</a></p>';
    $data['head'][] = '<script type="text/javascript" src="' . myUrl('js/jsconfirm.js') . '"></script>';
}
示例#19
0
function _edit($OID = 0, $CID = 0)
{
    loginRequireMgmt();
    if (!loginCheckPermission(USER::MGMT_USER)) {
        redirect("errors/401");
    }
    $object = new User();
    $object->retrieve($OID, $CID);
    if (!$object->exists()) {
        $data['body'][] = '<p>User Not Found!</p>';
    } else {
        $fdata['form_heading'] = 'Edit User';
        $fdata['object'] = $object;
        $fdata['actionUrl'] = myUrl('mgmt_user/ops_update');
        $fdata['actionLabel'] = "Submit";
        $fdata['cancelUrl'] = myUrl('mgmt_user/manage');
        $fdata['cancelLabel'] = "Cancel";
        $form = View::do_fetch(VIEW_PATH . 'mgmt_user/form.php', $fdata);
        $data['head'][] = View::do_fetch(VIEW_PATH . 'mgmt_user/form_js.php');
        $data['body'][] = '<h2>Edit User</h2>';
        $data['body'][] = $form;
    }
    View::do_dump(VIEW_PATH . 'layouts/mgmtlayout.php', $data);
}
echo myUrl('css/bootstrap.min.css');
?>
" rel="stylesheet" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php 
echo isset($head) && is_array($head) ? implode("\n", $head) : '';
?>
</head>
<body>
<div class="row"><div class="col-md-12"><h1><a href="/m">M</a> - The Master Server</h1></div></div>

<div class="row"><div class="col-md-12">
   <?php 
echo isset($body) && is_array($body) ? implode("\n", $body) : '';
?>
</div></div>
<div class="row"><div class="col-md-12">
<!-- footer -->
<?php 
echo isset($foot) && is_array($foot) ? implode("\n", $foot) : '';
?>
<!-- end footer -->
</div></div>

<script src="http://code.jquery.com/jquery.js"></script>
<script src="<?php 
echo myUrl('js/bootstrap.min.js');
?>
"></script>
</body>
</html>
    <table class="table table-bordered">
        <div class="table-responsive">
        <form method="post" action="<?php 
echo myUrl('main/adminUsers');
?>
" > 
            <a href=<?php 
echo myUrl('administrare/addUser');
?>
>Adauga </a>
          
            <threath>       
            <tr>
                <th>Select all</th>
                <th>Email</th>
                <th>Nume</th>
                <th>Prenume</th>
                <th>Tip</th>
                <th>Status</th>
                <th>Data</th>
                <th>Modifica</th>
                <th>Sterge</th>   
            </tr>
            </threath>
            <tbody>
            <?php 
$lengthOfArray = count($user);
for ($key_Number = 0; $key_Number < $lengthOfArray; $key_Number++) {
    echo "<tr>" . " <td>" . "<input type=\"checkbox\" name=\"checkbox_" . $user[$key_Number]['ID'] . "\" value=\"id_" . $user[$key_Number]['ID'] . "\" /></td>" . "<td>" . $user[$key_Number]['EMAIL'] . "</td>\n\t\t<td>" . $user[$key_Number]['NUME'] . "</td>\n\t\t<td>" . $user[$key_Number]['PRENUME'] . "</td>\n\t\t<td>" . $user[$key_Number]['TIP'] . "</td>\n                <td>" . $user[$key_Number]['STATUS'] . "</td>\n\t\t<td>" . $user[$key_Number]['DATAADAUGARII'] . "</td>\n\t\t<td><input type=\"submit\" value=\"Modifica\" onclick=\"myFunction('edit');return checkForm('edit');\"></td>\n\t\t<td><input type=\"submit\" value=\"Sterge\" onclick=\"myFunction('delete');return checkForm('delete');\"></td></tr>";
}
?>
<form method='POST' action="<?php 
echo myUrl('ops/updateGrupa');
?>
" >    

    <table>

        <tr>
            <td>Numele Grupei</td>
            <td><input type="text" name="nume" style="width:150px"
                       value="<?php 
echo isset($grupa[0]['NUME']) ? $grupa[0]['NUME'] : '';
?>
"></td>
        </tr>
        <tr>
            <td>An</td>
            <td><input type="text" name="an" style="width:150px"
                       value="<?php 
echo isset($grupa[0]['AN']) ? $grupa[0]['AN'] : '';
?>
"></td>
        </tr>
        <tr>
            <td>Sef grupa</td>

            <td>
                <select name="sef_grupa">
                    <?php 
$lengthOfArray = count($studenti);
示例#23
0
			   <span style="font-size:11px; font-family:Arial, Helvetica, sans-serif;">
			   <img src="<?php 
echo myUrl('images/ma.png');
?>
"  /> &nbsp; sign up foremail
			   </span>
          </div>
			
			<div class="footerbox" style="width:200px;">
               <h4 style="font-weight:bold; margin-bottom:5px;">WHAT'S HAPPENING AT MACY'S</h4>
			   <img src="<?php 
echo myUrl('images/kart.png');
?>
" />
			   <img src="<?php 
echo myUrl('http://assets.macys.com/navapp/dyn_img/site_ads/MacySitewideFooterIcon_1173517.png');
?>
"  />
            </div>
			
        </div>
    </div>
    
	
</div>


<div style="width:100%; height:auto; float:left; margin-top:40px;">
			<div style="width:960px; margin:auto; text-align:center;">
					<div style="width:100%; height:auto; float:left; font-family:Arial, Helvetica, sans-serif; font-size:11px;">
							© 2015 Brandz.com is a registered trademark. All rights reserved. Brandz.com, Inc., 680 Folsom St. San Francisco, CA 94107.
示例#24
0
								
								<div style="width:711px; height:auto; float:left; margin-top:20px;">
								<h3>featured categories</h3>
								<div style="width:731px; height:auto; float:left;">
												<?php 
foreach ($pro_row1 as $proval) {
    $image = $proval['image'];
    ?>
												<div class="product_contentbox3">
														<div class="product_img3">
																<a href="<?php 
    echo linkUrl('main/view2/?maincatid=' . $_GET['maincatid'] . '&catid=' . $_GET['catid'] . '&subcatid=' . $_GET['subcatid'] . '&productid=' . $proval['id']);
    ?>
">
																<img src="<?php 
    echo myUrl($image);
    ?>
"  />
																</a>
																<br />
																<?php 
    echo $proval['product_name'] . '</br>';
    ?>
																<span style="font-weight:bold; line-height:1.5;">
															         Seller: <?php 
    foreach ($rowshop as $sp) {
        if ($sp['id'] == $proval['shop_id']) {
            echo $sp['name'];
        }
    }
    ?>

<div>
    <form action="<?php 
echo myUrl('administrare/addGrupaMember');
?>
" method="POST">
        <div class="col_login2"> Numele Studentului </div>

        <div class="col_login1">
            <select name="userID">
                <?php 
$max = count($user);
for ($key_Number = 0; $key_Number < $max; $key_Number++) {
    echo '<option value="' . $user[$key_Number]['ID'] . '">' . $user[$key_Number]['NUME'] . ' ' . $user[$key_Number]['PRENUME'] . '</option>\\n';
}
?>
            </select>
            <input type="hidden" name="grupaID" value="<?php 
echo $grupaID;
?>
" >
        </div>
       
        <div class="col_login2" style="margin-left: 30px;"> <input type="submit" value="Trimite"> </div>
        
        
    </form>
</div>
示例#26
0
    <script src="js/html5.js"></script>
    <!-- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>-->
    <![endif]-->

    <!-- The fav icon -->
    <link rel="shortcut icon" href="img/favicon.ico">
    
    
</head>
<body>


<!--Header-part-->
<div id="header" class="no-print">
  <h1><a href="dashboard.html"><img src="<?php 
    echo myUrl('img/logo5.png');
    ?>
" /></a></h1>
</div>
<!--close-Header-part--> 

<!--top-Header-menu-->
<div id="user-nav" class="navbar navbar-inverse no-print">
  <ul class="nav">
    <li><a title="" href="<?php 
    echo linkUrl('main/home');
    ?>
" ><i class="icon icon-user"></i>  <span class="text">Welcome <?php 
    echo $_SESSION['username'];
    ?>
</span><!--<b class="caret"></b>--></a>
<?php

header("refresh:2;url=" . myUrl('administrare'));
?>
Bine te-ai logat, userule

示例#28
0
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
                <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
                    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
                    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
                    </head>

                    <body class="body">	
                        <?php 
include "header.tpl.php";
?>

                        <div class="container-fluid">
                            <?php 
echo isset($msg) && is_array($msg) ? implode("\n", $msg) : '';
?>

                            <?php 
echo isset($redirect) && is_array($redirect) ? ' Vei fi redirectat in 2 secunde' . header("refresh:2;url=" . myUrl($redirect[0])) . ' sau apasa <a href=' . myUrl($redirect[0]) . '>aici</a>' : '';
?>
                        </div>
                        <div class="footer">
                            <?php 
include "footer.tpl.php";
?>
                        </div>
                        <script type='text/javascript' <?php 
echo 'src="' . WEB_DOMAIN . '/js/bootstrap.js"';
?>
></script>
                    </body>
                    </html>
示例#29
0
?>
" />
		<link rel="stylesheet" href="<?php 
//echo myUrl('css/admincss/bootstrap-responsive.min.css')
?>
" />
        <link rel="stylesheet" href="<?php 
//echo myUrl('css/admincss/matrix-login.css')
?>
" />
		<link rel="stylesheet" href="<?php 
echo myUrl('css/login.css');
?>
" />
        <link href="<?php 
echo myUrl('font-awesome/css/font-awesome.css" rel="stylesheet');
?>
" />
		<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800' rel='stylesheet' type='text/css'>

    </head>
    <body>
        <div id="loginbox">            
                      
           <?php 
echo isset($body) && is_array($body) ? implode("\n", $body) : '';
?>
        
        </div>
        
        
 <form action="<?php 
echo myUrl('main/adminMaterii');
?>
" method="POST">
     <div class="form-group">
                <h3> Va rugam introduceti noua materie </h3>

                <div>
                    <label>Numele Materiei:</label>
                    <input type="text" name="nume" class="form-control">
                </div>
                              
                <div>
                    <label>Credite:</label>
                    <input type="text" name="profil" class="form-control">
                </div>
      
                <label>Profesor:</label>   <br>
                <select class="selectpicker">
                    
                           <?php 
$lengthOfArray = count($profesori);
for ($key_Number = 0; $key_Number < $lengthOfArray; $key_Number++) {
    echo '<option value=' . $profesori[$key_Number]['ID'] . '>' . $profesori[$key_Number]['NUME'] . ' ' . $profesori[$key_Number]['PRENUME'] . '</option>';
}
?>
                           
                  </select>
                <br>
                <br>