Login   Register  
PHP Classes
elePHPant
Icontem

File: deleteWhereExample.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Fernando Alls  >  Easy DB Work  >  deleteWhereExample.php  >  Download  
File: deleteWhereExample.php
Role: Example script
Content type: text/plain
Description: Delete with condition
Class: Easy DB Work
Execute MySQL queries using parameter lists
Author: By
Last change: updated table name to table database example.
Date: 2012-06-22 04:14
Size: 163 bytes
 

Contents

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

$db = new edwCore();
  
  
$db->deleteWhere('contact''id = 1');
?>