Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php include("tmp.header.inc.php");?> <section class="jumbotron benner_section"> <div ..

Decoded Output download

<?php include("tmp.header.inc.php");?> 
<section class="jumbotron benner_section"> 
	<div class="container"> 
    	<div class="row"> 
        	<div class="col-sm-12 nopadding"> 
            	<h1>Photo Gallery<p>PROMOTEUR IMMOBILIER - PROJET AGRICOLE</p></h1> 
            </div><!--col-sm-12--> 
        </div><!--row--> 
    </div><!--container--> 
</section><!--benner_section--> 
<section class="jumbotron about_section"> 
	<div class="container about_bg_section effect8"> 
       <div class="row"> 
       		<?php 
			 
			$photo_gallery=mysql_query("select * from tbl_gallery_category where status='1' ORDER by sort_order asc"); 
			if(mysql_num_rows($photo_gallery)==0) 
			{ 
				?> 
				<div class="alert alert-danger"> 
					<strong>Error:</strong> Opps! No Photos Found. 
				</div> 
				<? 
			} 
			while($nr=mysql_fetch_array($photo_gallery)) 
			{ 
				$photo_gallery_query=mysql_query("select * from tbl_gallery where category_id='$nr[id]' order by id desc limit 0,1"); 
				$pnr=mysql_fetch_array($photo_gallery_query); 
			?> 
			<div class="col-sm-4"> 
				<div class="our-projects"> 
					<div class="our-projects-img"><img src="<?=$pnr["media"]?>" class="img-responsive"></div> 
					<div class="our-projects-info"> 
						<h1><?=$nr["category"]?> </h1> 
						<p><?=$pnr["media_label"]?></p> 
						<a href="<?=$path?>media/<?=$nr["page_alisa"]?>.php" title="<?=$nr["category"]?>" class="btn btn_readmore_projects">More<i class="fa fa-angle-right"></i></a> 
					</div><!--our-projects-info-->    	 
				</div><!--our-projects--> 
			</div><!--col-sm-4--> 
			<? 
			} 
			 
			?> 
       </div><!--row--> 
    </div><!--Page_bg_section--> 
</section><!--Page--> 
<?php include("tmp.footer.inc.php");?>

Did this file decode correctly?

Original Code

<?php include("tmp.header.inc.php");?>
<section class="jumbotron benner_section">
	<div class="container">
    	<div class="row">
        	<div class="col-sm-12 nopadding">
            	<h1>Photo Gallery<p>PROMOTEUR IMMOBILIER - PROJET AGRICOLE</p></h1>
            </div><!--col-sm-12-->
        </div><!--row-->
    </div><!--container-->
</section><!--benner_section-->
<section class="jumbotron about_section">
	<div class="container about_bg_section effect8">
       <div class="row">
       		<?php
			
			$photo_gallery=mysql_query("select * from tbl_gallery_category where status='1' ORDER by sort_order asc");
			if(mysql_num_rows($photo_gallery)==0)
			{
				?>
				<div class="alert alert-danger">
					<strong>Error:</strong> Opps! No Photos Found.
				</div>
				<?
			}
			while($nr=mysql_fetch_array($photo_gallery))
			{
				$photo_gallery_query=mysql_query("select * from tbl_gallery where category_id='$nr[id]' order by id desc limit 0,1");
				$pnr=mysql_fetch_array($photo_gallery_query);
			?>
			<div class="col-sm-4">
				<div class="our-projects">
					<div class="our-projects-img"><img src="<?=$pnr["media"]?>" class="img-responsive"></div>
					<div class="our-projects-info">
						<h1><?=$nr["category"]?> </h1>
						<p><?=$pnr["media_label"]?></p>
						<a href="<?=$path?>media/<?=$nr["page_alisa"]?>.php" title="<?=$nr["category"]?>" class="btn btn_readmore_projects">More<i class="fa fa-angle-right"></i></a>
					</div><!--our-projects-info-->    	
				</div><!--our-projects-->
			</div><!--col-sm-4-->
			<?
			}
			
			?>
       </div><!--row-->
    </div><!--Page_bg_section-->
</section><!--Page-->
<?php include("tmp.footer.inc.php");?>

Function Calls

None

Variables

None

Stats

MD5 060dae555f9d20387b5b8124419d44fb
Eval Count 0
Decode Time 102 ms