Login   Register  
PHP Classes
elePHPant
Icontem

File: ejemplo.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of XYOX  >  Fichero  >  ejemplo.php  >  Download  
File: ejemplo.php
Role: Example script
Content type: text/plain
Description: demo
Class: Fichero
Create and manipulate files
Author: By
Last change: demo
Date: 2008-06-15 23:09
Size: 160 bytes
 

Contents

Class file image Download
<?php
    
require "ficheroV2.class.php";
    
$fp = new Fichero("hi.txt");
    
$fp->Escribir("Hello word, Hola mundo!");
    echo 
$fp->Gets_Cont();
    
$fp->Cierra();
?>