PHP Classes

File: tests/tableDelete.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/tableDelete.php   Download  
File: tests/tableDelete.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 339 bytes
 

Contents

Class file image Download
<?php
require_once ('../src/Mind.php');

$Mind = new Mind();

echo
'<br>';

if(
$Mind->tableDelete('users')){
    echo
'Tablo kald?r?ld?.';
} else {
    echo
'Tablo kald?r?lamad?.';
}

echo
'<br>';

if(
$Mind->tableDelete(array('posts', 'test1'))){
    echo
'Tablolar kald?r?ld?.';
} else {
    echo
'Tablolar kald?r?lamad?.';
}