PHP Classes

File: Example.php

Recommend this page to a friend!
  Classes of Mohammad Keramatifar   Database Combo Box   Example.php   Download  
File: Example.php
Role: Example script
Content type: text/plain
Description: Example of Usage
Class: Database Combo Box
Generate form select inputs from database queries
Author: By
Last change:
Date: 10 years ago
Size: 521 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>ParsPHP.org Components</title>
    </head>
    <body>
        <p>Database ComboBox Generator By Keramatifar.ir</p>
        <?php
           
include 'class.dbComboBox.php';
           
$cb = new dbComboBox('localhost', 'root', '', 'test');
            echo
$cb->ComboBox('catgeories', 'title', 'id', 'dcbCategories');
       
?>
</body>
</html>