Your IP : 3.145.17.18


Current Path : /home/sudancam/.trash/quran/
Upload File :
Current File : /home/sudancam/.trash/quran/print.php

<?php
header("Content-Type: text/html; charset=utf-8");
include("includes/function.php");
if($allw_print == 1){
include("includes/ayat.php");

$sorax = intval($_GET['sora']);
$ayax = intval($_GET['aya']);
$typex = intval($_GET['type']);

function select($sora,$aya,$type){
global $q,$quran_type_view,$htmlorphp,$QURAN,$Q_W,$siteurl;

if(!isset($type) OR $type == 0){ $type = 1; }

if(file_exists(include_tafseerfilse($sora,$aya,$type))){ include(include_tafseerfilse($sora,$aya,$type)); }else{ $err = $Q_W[34]; }

$text_tafseer = $TAFSEER[$type][$sora][$aya];
$ayatext = $QURAN[$sora][$aya];
$ayaorders = $aya;

if($text_tafseer == ""){ $text = $Q_W[27]; }else{ $text = nl2br($text_tafseer); }

$s = '<p>'.$ayatext.' <a href="'.url(9,$sora,0).'"><span>('.$ayaorders.') ('.$q[$sora].')</span></a><br /><br /></p>
<p>'.$err.''.$text.'</p>';

return $s;
}

if(isset($sorax) AND $sorax != 0 AND $sorax <= 114){
$sora = $sorax;
$soratitle = '&raquo; '.$q[$sora].'';
}else{
$sora = 1;
$soratitle = '';
}

if(isset($ayax) AND $ayax != 0){
$aya = $ayax;
}else{
$aya = 1;
}

if(isset($typex) AND $typex != 0 AND isset($sorax) AND $sorax != 0){
$type = $typex;
$txt = select($sora,$aya,$type);
$soratitle = '&raquo; <a href="'.url(6,$type,0).'">'.$tafseers[$type].'</a> '.$Q_W[29].' '.$q[$sora].'';
}else{

if(isset($typex) AND $typex != 0){
$type = $typex;
if($typex > count($tafseers)-1){
$type = 1;
}
$txt = all_sora_loop_tafseer(6,$type);
$soratitle = '&raquo; '.$tafseers[$type].'';
}else{
$type = 1;
$txt = all_sora_loop_tafseer(6,$type);
$soratitle = '&raquo; '.$tafseers[$type].'';
}
}

if ($htmlorphp=="1"){
$linksp = "".$siteurl."/t-".$sora."-".$type."-".$aya.".html";
}else{
$linksp = "".$siteurl."/tafseer.php?sora=".$sora."&type=".$type."&aya=".$aya."";
}

$titlepage = "".$tafseers[$type]." ".$Q_W[26]." ".$q[$sora]."";
$titlepage_en = "".$tafseers_en[$type]." Surat ".$q_english[$sora]." Aya ".$aya."";

$dates = date("j/n/Y g:i:s",time());

$texts = preg_replace('/ّ|َ|ً|ُ|ٌ|ِ|ٍ|ْ/', '', $QURAN[$sora][$aya]);
$m1 = $tafseers[$type]." - ".$texts;
$m2 = str_replace(" ",",",$texts).", ".$tafseers[$type];

echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="rtl" xmlns="http://www.w3.org/1999/xhtml" xml:lang="ar" lang="ar">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="'.$folder.'/print.css" type="text/css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="description" content="'.$m1.'" />
<meta name="keywords" content="'.$m2.'" />
<title>'.$tafseers[$type].' '.$Q_W[26].' '.$q[$sora].'</title>
</head>
 
<body>
 
 
<div id="wrap">
 
<div class="title"><h1>'.$titlepage.'</h1></div>
 	 
<div class="tafseer">
<div class="ayat4tafseer">'.$txt.'</div>
</div>

<!-- <div style="text-align:center; padding:50px 0 10px 0;">'.$Q_W[30].' '.$dates.'</div> -->
<div style="text-align:center; padding:10px 0 10px 0;">'.$Q_W[31].' <a href="'.$linksp.'">'.$linksp.'</a></div>
<!-- <div class="footer"><p><a href="'.$siteurl.'">'.$siteurl.'</a></p></div> -->

</div>
 
</body>
 
</html>';
}else{
echo '<p align="center">not allow</p>';
}
?>