PHP Classes

File: call.php

Recommend this page to a friend!
  Classes of Paul   GPW parse   call.php   Download  
File: call.php
Role: Example script
Content type: text/plain
Description: Sample class use
Class: GPW parse
Import Polish stock market data into a database
Author: By
Last change:
Date: 16 years ago
Size: 205 bytes
 

Contents

Class file image Download
<?php

require("GPWparse.class.php");

$gpw = new GPWparse;
$gpw->sql_server = 'localhost';
$gpw->sql_username = 'root';
$gpw->sql_password = '';
$gpw->sql_database = 'gpw';
$gpw->setData();

?>