PHP Classes

File: uploady/admin/translations/actions/new.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/admin/translations/actions/new.php   Download  
File: uploady/admin/translations/actions/new.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: refactor
Code refactor
update permission to 755
Date: 26 days ago
Size: 421 bytes
 

Contents

Class file image Download
<?php

include_once '../../session.php';

if (
$_SERVER['REQUEST_METHOD'] == "POST") {

    if (!
$auth->checkToken($_POST['csrf'], $_SESSION['csrf'])) {
       
$utils->redirect(SITE_URL . "/admin/translations/view.php?msg=csrf");
    }

   
$translation = new Uploady\PageTranslation($db);
   
$translation->addTranslation($_POST);
   
$utils->redirect(SITE_URL . '/admin/translations/view.php?msg=translation_added');
}