PHP Classes

File: exemples/php-activerecord/examples/simple/simple.sql

Recommend this page to a friend!
  Classes of Wesley David   wdForm   exemples/php-activerecord/examples/simple/simple.sql   Download  
File: exemples/php-activerecord/examples/simple/simple.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: wdForm
Generate and process HTML forms
Author: By
Last change: Update of exemples/php-activerecord/examples/simple/simple.sql
Date: 2 months ago
Size: 175 bytes
 

Contents

Class file image Download
create table books( id int not null primary key auto_increment, name varchar(50), author varchar(50) ); insert into books(name,author) values('How to be Angry','Jax');