PHP Classes

File: deletearticle.php

Recommend this page to a friend!
  Classes of Ahmed Khan   Custom PHP CMS   deletearticle.php   Download  
File: deletearticle.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Custom PHP CMS
Manage the content of a site that can be searched
Author: By
Last change:
Date: 2 years ago
Size: 219 bytes
 

Contents

Class file image Download
<?php
//It autoloads the class
include 'class/articles.php';

$ids = $_POST['ids'];

$del = new Articles();

$result = $del->deletearticle($ids);

if(
$result == 'true')
{
    echo
$result;
}
else
{
    echo
$result;
}




?>