PHP Classes

File: deleteAllExample.php

Recommend this page to a friend!
  Classes of Fernando Alls   Easy DB Work   deleteAllExample.php   Download  
File: deleteAllExample.php
Role: Example script
Content type: text/plain
Description: Delete all
Class: Easy DB Work
Execute MySQL queries using parameter lists
Author: By
Last change:
Date: 11 years ago
Size: 180 bytes
 

Contents

Class file image Download
<?php
require_once('connection/Config.class.php');
require_once(
'edwCore.class.php');

$db = new edwCore();
 
 
 
$db->deleteAll('contact');
 echo
$db->CallBack;
 
 
?>