Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2001-01-16 22:07
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 */

?>