You Are Here : /var/www/virtual/tvarditsa.org/admin/ |
Current File : /var/www/virtual/tvarditsa.org/admin/update_news.php |
<?php set_magic_quotes_runtime(0); include ("../classes/pager.class.php"); // Update news if ($_FILES['pic']['name']!='') { move_uploaded_file ( $_FILES['pic']['tmp_name'], 'pic_news/n_'.date('His').$_FILES['pic']['name'] ) ; $_POST['data']['pic']='n_'.date('His').$_FILES['pic']['name']; } $id_file=(int)$_POST['data']['id']; if ($_POST['update']==1) { $news=new Pager(); $news->set_condition ('id = '.$id_file); $news->update ('new_'.$language,$_POST['data']); if ($id_file == 0) $id_file = $news->Insert_ID(); $url = '?lang='.$language.'&action=news_list'; } echo "<div align=\"center\"><strong>Please wait while we transfer you...</strong></div>"; echo "<html><head><meta http-equiv=\"refresh\" content=\"0;URL=".$url."\"></head></html>"; ?>