PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Vladimir Zurita   vladzur Database   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: vladzur Database
Change MySQL table records from parameter lists
Author: By
Last change:
Date: 15 years ago
Size: 144 bytes
 

Contents

Class file image Download
<?php
include("database.php");
$DB= new DataBase();
if(isset(
$_POST['data'])){
   
$data=$_POST['data'];
   
$DB->save('user',$data);
    exit();
}
?>