<?php
/**
require eğer dosya yoksa Fatal error verir
include eğer dosya yoksa Warning error verir.
..._once dosyayı bir kere yükle, tekrar tekrar aynı dosyayı yükleme.
*/
require "routing.php";
require_once "routing.php";
include "theme.php";
include_once "theme.php";
?>
Dosya Dahil Etme PHP
4/
5
Oleh
Root