All pastes #81772 Raw Edit

Someone

public php v1 · immutable
#81772 ·published 2006-07-07 21:10 UTC
rendered paste body
<?php////////////////////////////////////////////////////////////////////////////////////////// Class: UserContact// Purpose: represents a user within the system.///////////////////////////////////////////////////////////////////////////////////////require_once 'SystemComponent.php';require_once 'DbConnector.php';class UserContact{	var $userID;	var $firstName;	var $lastName;	var $address1;	var $address2;	var $city;	var $usersState;	var $zipcode;	var $phoneNumber1;	var $phoneNumber2;	var $userEmail;	var $connector;		function __construct() { // or UserContact if php < 5		$this->connector = new DbConnector();	}	function fill($userID){		$result = $this->connector->query('select * from user_contact where first_name = "Stephen"');		print "$result";	}}fill('1234');