Login   Register  
PHP Classes
elePHPant
Icontem

File: test.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2010-04-05 06:27
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"];
    }



?>