PHP Classes

File: testab.php

Recommend this page to a friend!
  Classes of Ahmed Amar   Arab Temp   testab.php   Download  
File: testab.php
Role: Example script
Content type: text/plain
Description: testab.php
Class: Arab Temp
Caching template processing engine
Author: By
Last change:
Date: 14 years ago
Size: 1,175 bytes
 

Contents

Class file image Download
<?php
/**
  * ##############################################
  * ##برمجة محمدهلال ##
  * ##جميع الحقوق محفوظة لي محمدهلال ##
  * ## mohamedhelal ##
  * ##all rights to mohamedhelal ##
  * ##email:mohamed_helal123456@hotmail.com ##
  * ##############################################
  */
 
include('arab_Temp.php');
 
$config['temp']='temp';
 
$config['cache']='arab_TempCache';
 
$arab_Temp=new arab_Temp($config);
 
// مصفوفة بيانات
 
$row=array(
      array(
'id'=>1,'fname'=>'mohamed1','sname'=>'helal1'),
      array(
'id'=>2,'fname'=>'mohamed2','sname'=>'helal2'),
      array(
'id'=>3,'fname'=>'mohamed3','sname'=>'helal3'),
      array(
'id'=>4,'fname'=>'mohamed4','sname'=>'helal4'),
      array(
'id'=>5,'fname'=>'mohamed5','sname'=>'helal5'),
      array(
'id'=>6,'fname'=>'mohamed6','sname'=>'helal6'),
      array(
'id'=>7,'fname'=>'mohamed7','sname'=>'helal7')
  );
 
// اضافة المصفوفة الي القالب
 
$arab_Temp->assign("row",$row);
 
//استخدام الكلاسات في القالب
 // الكلاس
 
class Myobject{
    
     function
Name($var){
         return
$var;
     }
 }
 
$arab_Temp->assign("myobject",new Myobject());
  echo
$arab_Temp->display('index.tpl');

?>