PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Dev Sharma   PHP MySQL Shell   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Just an example file
Class: PHP MySQL Shell
Execute MySQL queries from the command line shell
Author: By
Last change:
Date: 4 years ago
Size: 135 bytes
 

Contents

Class file image Download
<?php

require_once 'shell.class.php';

$db = new Shell('localhost', 'username', 'pass', 'database name', 3306);
$db->shell();
?>