PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Marcus Vinícius   MySQL Dump   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example script
Class: MySQL Dump
Generate a dump of information in a MySQL database
Author: By
Last change:
Date: 19 years ago
Size: 144 bytes
 

Contents

Class file image Download
<?php

mysql_connect
("localhost", "root", "");

require(
"class_mysqldump.php");
$dump = new MySQLDump();

print
$dump->dumpDatabase("mydb");

?>