get_start_db.php 699 Bytes
<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

require_once './include/configure.php';
require_once './include/classes/Connectdb.php';
require_once './include/classes/Sytemoutput.php';


$db = new Connectdb();
$array_domains = $db->read_start_html();

foreach ($array_domains as $key => $value) {
    print($array_domains[$key]['url']);
    print("\n");
    print($array_domains[$key]['title']);
    print("\n");
    print($array_domains[$key]['description']);
    print("\n");
}

//$sysout = new Sytemoutput();

//$db->read_start_html($array_domains);