PHP Classes

File: FillData.php

Recommend this page to a friend!
  Classes of Mario Carrocera   HTML Metatags using PHP on Time   FillData.php   Download  
File: FillData.php
Role: Example script
Content type: text/plain
Description: Example script
Class: HTML Metatags using PHP on Time
Store and retrieve HTML tags to use in Web pages
Author: By
Last change:
Date: 2 years ago
Size: 1,035 bytes
 

Contents

Class file image Download
<?php

ini_set
('display_errors', true);
error_reporting(E_ERROR | E_PARSE | E_NOTICE | E_WARNING);

$base='ontime/';
include_once(
$base."OnTime.php");
$demo=new OnTime();

echo
"********** <br> Main containe <br> ********** <br> <br>";
echo
"Try conect with correct info ->Connect('admin','OT2021Free'): ";$demo->Connect('admin','OT2021Free');

echo
"**********+++++++++++ <br> Creating Basic content on page, screen container and fill data <br> **********+++++++++++ <br> <br>";


$name='page';
$demo->CrtFtrBsc($name);
$table='screen';
$demo->CrtBscIn($table,'Related data on screen',$name);
$demo->AnnInAdd($table,'b',$name);
$demo->UpnCntIn('icon','otfavicon.ico',$table, $name);
$demo->UpnCntIn('head','On Time',$table, $name);
$demo->UpnCntIn('description','Mundos Genesys, content manger',$table, $name);
$demo->UpnCntIn('keyword','cm,wiki,blog,pages,user,free, comertial',$table, $name);
$demo->UpnCntIn('author','Mundos Genesys',$table, $name);


echo
"**********+++++++++++ <br> Done<br> **********+++++++++++ <br> <br>";
?>