PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Jeffrey Hines   class.LoadData.php   example.php   Download  
File: example.php
Role: ???
Content type: text/plain
Description: Use example
Class: class.LoadData.php
Author: By
Last change:
Date: 24 years ago
Size: 471 bytes
 

Contents

Class file image Download
<? /* Array of table field names */ $f_names = array( "name", "location", "email", "username", "password"); /* Array corrosponding data to load */ $load_data = array( "somename", "alocation", "email@email.net", "secret word"); /* Load member information into database */ $databaseInput = new LoadData( "tbl_name", "Database" ); $databaseInput->InputMember( $f_names, $loadData ); /* End database load */ ?>