dodanie nowej strony mybb - Wersja do druku
ToolsX Windows 11 Tuning
dodanie nowej strony mybb - Wersja do druku

+- ToolsX Windows 11 Tuning (http://darmowe-gry.5v.pl)
+-- Dział:


WWW (http://darmowe-gry.5v.pl/forumdisplay.php?fid=280)
+--- Dział: Web Master

(http://darmowe-gry.5v.pl/forumdisplay.php?fid=102)
+---- Dział: WWW (http://darmowe-gry.5v.pl/forumdisplay.php?fid=119)
+---- Wątek: dodanie nowej strony mybb (/showthread.php?tid=308)



dodanie nowej strony mybb - admin - 09-26-2018

Tworzenie nowej strony

tworzymy plik nazwastropny.php

<?php
define('IN_MYBB', 1);
require_once("global.php");

add_breadcrumb("nazwastrony", $_SERVER['PHP_SELF']);

eval("\$page = \"".$templates->get("twojindetyfikatorstrony")."\";");

output_page($page);
?>


Admin Control Panel and go to "Templates & Style". Click "Templates", then "Global Templates". Create a new template and give it the name you gave it above, e.g. "twojindetyfikatorstrony". For add this:


<html>
<head>
<title>Your title</title>
{$headerinclude}
</head>
<body>
{$header}
Your content here...
{$footer}
</body>
</html>