PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of sarmad Mahar   MySQLi sample test   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: mysqli class implementation
Class: MySQLi sample test
Execute MySQL queries using MySQLi extension
Author: By
Last change:
Date: 13 years ago
Size: 213 bytes
 

Contents

Class file image Download
<?php
include_once("db.inc.php");

$db=new db();

$result=$db->Executequery("select * from articless");

 while (
$row = $result->fetch_assoc()) {
        echo
"<br>" . $row["arti_link"];
    }



?>