Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $x = $_GET['x'];
  3.  
  4. if($USE_CPANEL){
  5.  
  6. if(!empty($x)){
  7. include("./cpanel/cp_".$x.".php");
  8. } else {
  9. include("./cpanel/cp_welcome.php");
  10. }
  11.  
  12.  
  13. } else {
  14. echo "<h3>Sorry!</h3><br/><br/>";
  15. echo "It appears the Control Panel is disabled!";
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement