PHP Classes

File: deleteWhereExample.php

Recommend this page to a friend!
  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: 11 years ago
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');
?>