/
var
/
www
/
qr4y.com
/
www
/
qr
/
/var/www/qr4y.com/www/qr
mkdir
upload
Name
Size
Mode
Actions
.htaccess
144
0644
edit
dl
rm
index.php
602
0644
edit
dl
rm
Edit:
/var/www/qr4y.com/www/qr/index.php
(602B)
<?php // Put this file in the www /or/ directory $id = $_REQUEST['id']; // check if id is empty if (empty($id)) { header("Location: /app/"); exit; } // substr $object = substr($id, -2); $value = substr($id, 0, -2); switch ($object) { case '-b': // branch header("Location: /app#/branch?id=".$value); break; case '-o': // order break; case '-c': // company break; case '-t': // table break; default: header("Location: /app/"); } ?>
Save