Öne Çıkanlar

PHP 5
Price: 19.0 TL 19.0 TL
Her Yönüyle PHP 6
Price: 25.65 TL 25.65 TL
Dreamweaver 8
Price: 23.0 TL 23.0 TL
PHP ile Web Programcılığı
Price: 39.0 TL 39.0 TL

Anket

En beğendiğiniz PHP kitabı hangisi?

autoload



<?php
function __autoload($class_name)
{        
    
$includeFile "class/{$class_name}.class.php";
    if(
file_exists($includeFile))
        require_once(
$includeFile);    

?>