Advertisement
Nikita051

Untitled

Sep 9th, 2022
1,052
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.     $url = $_SERVER['REQUEST_URI'];
  3.     $layout = file_get_contents("layout.php");
  4.     $content = file_get_contents($url.'.php');
  5.     $layout = str_replace("{{content}}",$content,$layout);
  6.     echo $layout;
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement