You've already forked OpenShorte.old
Renamed "includes" to "templates" Added .htaccess to redirect requests to index.php Added function to split request URL into array Corrected locations in scripts and pages
26 lines
901 B
PHP
26 lines
901 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>BJPHoster URL Shortener | Control Panel</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="logout()">Logout</button>
|
|
<div id="urllist">
|
|
<?php
|
|
if ( ! $row ) {
|
|
echo ( "You have not created any URL yet.<br>" );
|
|
}
|
|
else {
|
|
do {
|
|
echo ( "\t\t\t" . '<div>' . $row [ 'ID' ] . " | " . $row [ 'URL' ] . "</div>\n" );
|
|
} while ( $row = $result->fetch_assoc ( ) );
|
|
}
|
|
?>
|
|
</div>
|
|
<input type="text" id="form-url" placeholder="URL:">
|
|
<button onclick="urlinsert()">Insert new URL</button><br>
|
|
<div id="responsetext"></div>
|
|
<script src="js/insertnew.js"></script>
|
|
<script>var script_name = "<?=substr($_SERVER['SCRIPT_NAME'],0,-10)?>";</script>
|
|
</body>
|
|
</html>
|