PHP Classes

File: examples/sql/example_delete.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/sql/example_delete.php   Download  
File: examples/sql/example_delete.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 186 bytes
 

Contents

Class file image Download
<?php
include 'config.php';

$delete = new A_Sql_Delete();
$delete->table('mytable')->where('id =', 1);
echo
"A_Sql_Delete::render=" . $delete->render() . '<br/>';

dump($delete);