Example #1
0
        PHP Editor
    </title>
    <link href="../src/Template/css/header.css" rel="stylesheet" type="text/css">
    <link href="../src/css/editor.css" rel="stylesheet" type="text/css">
    <link href="style.css" rel="stylesheet" type="text/css">
    <script src="../src/js/jquery-1.10.2.js"></script>
    <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css">

</head>
<body>
<Usertoken id="<?php 
echo $token;
?>
"></Usertoken>
<?php 
DisplayHeader();
?>

<div class="DisplayBody">

    <div class="fileinfo" id ="<?php 
echo $FileName;
?>
">File Name : <?php 
echo $FileName;
?>
</div>

    <div class="codeEditor">
        <textarea class="Content display" id="PHPContent" placeholder="Php code code ...."><?php 
echo $content;
Example #2
0
<?php

require "label.php";
dbConnect();
if (!verifyAdmin()) {
    header("Location: admin.php");
}
$cats = mysql_query("SELECT * FROM member WHERE username_upline='{$USERNAME_DEFAULT}'") or error(mysql_error());
DisplayHeader("Member Area > ViewTree");
echo "<p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\">\n";
echo "<p style=\"margin-top: 0; margin-bottom: 4\" align=\"center\"><font size=\"4\"> -- VIEW TREE (POHON JARINGAN) DEFAULT WEBSITE -- </font></p>\n";
echo "<p style=\"margin-top: 0; margin-bottom: 4\" align=\"center\"><font size=\"1\">===========[ Maksimal hingga kedalaman 15 level ]============= </font></p>\n";
// level 1
if (mysql_num_rows($cats) == 0) {
    echo "<p align=\"center\"><font face=\"Verdana\" size=\"4\"> Maaf !!! Belum ada Jaringan</font></p>\n";
} else {
    while ($row = mysql_fetch_array($cats)) {
        echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|</font></pre> \n";
        echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|-<b>level 1</b>--&gt;<b><font color=\"#000080\"><i> </i></font><i><font color=\"#000000\">{$row['nama']}</font></i></b> - <font color=\"#008080\">{$row['nomor_id']}</font> - {$row['username']}</font> - <font face=\"Verdana\" style=\"font-size: 8pt; font-style: italic\" color=\"#FF0000\">({$row['stat']})</font></pre> \n";
        // level 2
        $subcats = mysql_query("SELECT * FROM member WHERE username_upline='{$row['username']}'") or error(mysql_error());
        $member = mysql_num_rows($subcats);
        while ($row = mysql_fetch_array($subcats)) {
            echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|</font></pre> \n";
            echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-<b>level 2</b>--&gt;<b><font color=\"#000080\"><i> </i></font><i><font color=\"#000000\">{$row['nama']}</font></i></b> - <font color=\"#008080\">{$row['nomor_id']}</font> - {$row['username']}</font> - <font face=\"Verdana\" style=\"font-size: 8pt; font-style: italic\" color=\"#FF0000\">({$row['stat']})</font></pre> \n";
            // level 3
            $subcats1 = mysql_query("SELECT * FROM member WHERE username_upline='{$row['username']}'") or error(mysql_error());
            $member = mysql_num_rows($subcats1);
            while ($row = mysql_fetch_array($subcats1)) {
                echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|</font></pre> \n";
                echo "<pre style=\"margin-top: 0; margin-bottom: 0\"><font face=\"Verdana\" size=\"1\">|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-<b>level 3</b>--&gt;<b><font color=\"#000080\"><i> </i></font><i><font color=\"#000000\">{$row['nama']}</font></i></b> - <font color=\"#008080\">{$row['nomor_id']}</font> - {$row['username']}</font> - <font face=\"Verdana\" style=\"font-size: 8pt; font-style: italic\" color=\"#FF0000\">({$row['stat']})</font></pre> \n";
Example #3
0
<?php

include '../src/lib/login_check.php';
include '../src/Template/header.php';
?>
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="utf-8">
    <link href="../src/Template/css/header.css" rel="stylesheet" type="text/css">
    <link href="../src/css/sidemenu.css" rel="stylesheet" type="text/css">
    <script src="../src/js/jquery-1.10.2.js" type="text/javascript"></script>
</head>
<body>
<?php 
DisplayHeader('Dashboard');
?>
<div class="side-menu" id="side-menu">
    <a href="">DashBoard</a>
    <a href="../Favourite">MyFav</a>
    <a href="../Recent">Recent</a>
    <a href="../Logout">Logout</a>
</div>
<div class="mainbody">
    <h1>
        Online HTML Editor
    </h1>
    <p> With this dynamic <i><b>HTML Editor</b></i> you can get you can code online.<br>
        Its too simple , Just write down the code and press control + Enter ! Enjoy Coding.
        <br><br> <input type="button" value="Go To HTML Editor" onclick="location.href='../HTMLEditor/';">
    </p>
Example #4
0
?>
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="utf-8">
    <link href="../src/Template/css/header.css" rel="stylesheet" type="text/css">
    <link href="../src/css/sidemenu.css" rel="stylesheet" type="text/css">
    <script src="../src/js/jquery-1.10.2.js" type="text/javascript"></script>
</head>
<body>
<Usertoken id="<?php 
echo $token;
?>
"></Usertoken>
<?php 
DisplayHeader('Favourite');
?>
<div class="side-menu" id="side-menu">
    <a href="../DashBoard">DashBoard</a>
    <a href="../Favourite">MyFav</a>
    <a href="../Recent">Recent</a>
    <a href="../Logout">Logout</a>
</div>
<div class="mainbody">

    <h1>Favourite Files</h1>
    <center>
        <div class="ListFiles">
        <table>
            <?php 
include '../src/lib/login_check.php';
Example #5
0
if (!isset($_COOKIE[$cookie_name])) {
} else {
    header("location:../DashBoard/");
}
include '../src/Template/header.php';
?>
<html>
<head>
    <title>Login</title>
    <link href="../src/Template/css/header.css" rel="stylesheet" type="text/css">
    <link href="../src/css/register.css" rel="stylesheet" type="text/css">
    <script src="../src/js/jquery-1.10.2.js"></script>
</head>
<body>
<?php 
DisplayHeader('Sign-in');
?>
<h1 class="register-title" id="register-title">Welcome</h1>
<div class="register" id="register">
    <div class="status" id="status"></div>
    <input type="button" value="Login" class="register-button" id="Login" style="display:none;">

    <form id="signupform">

        <input type="email" class="register-input" name = "Email" id = "Email" placeholder="Email address">
        <input type="password" class="register-input" Name="Password" id="Password" placeholder="Password">

        <input type="button" value="Login" class="register-button" id="Submit">
        <br> Dont Have An Account ?
        <input type="button" value="Register" class="register-button" onclick="location.href='../Signup'">
        <script src="validatorSignin.js"></script>
Example #6
0
?>
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <title>Online Coder</title>
    <meta charset="utf-8">
    <meta name="description" content="OnlineCode.in is an online IDE where you can test your Javascript , HTML , CSS and Php codes online with OnlineEditors ">
    <meta name="keywords" content="online javascript editor, testing javascript online, online ide, online code editor, html, css, scss online editor">
    <link href="src/Template/css/header.css" rel="stylesheet" type="text/css">
    <link href="src/css/sidemenu.css" rel="stylesheet" type="text/css">
    <script src="src/js/jquery-1.10.2.js" type="text/javascript"></script>
    <meta name="google-site-verification" content="cZ58pADWYRT48YcegGpyXmLjkOli-FwxnU4teBejRX4" />
</head>
<body>
<?php 
DisplayHeader('Main Page');
?>
<div class="mainbody">
    <h1>
        Online HTML Editor
    </h1>
    <p> With this dynamic <i><b>HTML Editor</b></i> you can get you can code online.<br>
        Its too simple , Just write down the code and press control + Enter ! Enjoy Coding.
        <br><br> <input type="button" value="Go To HTML Editor" onclick="location.href='../HTMLEditor/';">
    </p>
    <h1>
        Online PHP Editor
    </h1>
    <p> With this dynamic <i><b>PHP Editor</b></i> you can get you can code online.<br>
        Its too simple , Just write down the code and press control + Enter ! Enjoy Coding.
        <br><br> <input type="button" value="Go To PHP Editor" onclick="location.href='../PHPEditor/';">