CSY2028-assignment-2/jobs/JobDatabaseTable.php

8 lines
268 B
PHP

<?php
namespace jobs;
class JobDatabaseTable extends \CSY2028\DatabaseTable { //Represents A table from the schema for this site
protected $server = 'mysql';
protected $username = 'student';
protected $password = 'student';
protected $schema = 'job';
}