PHP Classes

File: examples/sql/example_update.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/sql/example_update.php   Download  
File: examples/sql/example_update.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: 238 bytes
 

Contents

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

$update = new A_Sql_Update();
$update->table('mytable')->set(array('foo'=>'foo', 'bar'=>'bar', 'baz'=>'baz'))->where('id', 1);
echo
"A_Sql_Update::render=" . $update->render() . '<br/>';

dump($update);