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

Signing you up...

Thank you for signing up!

PHP Decode

<!DOCTYPE html> <!--[if IE 7]> <html class="ie ie7" <?php language_attributes(); ?>> <!..

Decoded Output download

<!DOCTYPE html> 
<!--[if IE 7]> 
<html class="ie ie7" <?php language_attributes(); ?>> 
<![endif]--> 
<!--[if IE 8]> 
<html class="ie ie8" <?php language_attributes(); ?>> 
<![endif]--> 
<!--[if !(IE 7) & !(IE 8)]><!--> 
<html <?php language_attributes(); ?>> 
 
<head> 
<title><?php wp_title( '|', true, 'right' ); ?></title> 
<meta charset="<?php bloginfo( 'charset' ); ?>">  
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/ie.css" /> 
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/uikit.min.css" /> 
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/style.css" /> 
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/style.css" /> 
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/responsive.css" /> 
<!--[if lt IE 9]> 
<link rel="stylesheet" type="text/css" media="screen" href="css/ie.css" /> 
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> 
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script> 
<![endif]--> 
<?php 
    wp_enqueue_script('jquery');  
    wp_localize_script('jquery', 'smc', array( 
	    'ajaxURL' => admin_url('admin-ajax.php'), 
        'nonce' => wp_create_nonce( 'smc-parvez' ) 
    )); 
    wp_head();  
?> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.min.js"></script> 
<script type="text/javascript" src="https://www.google.com/jsapi"></script> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/uikit.js"></script> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.carouFredSel.js"></script> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.prettyPhoto.js"></script> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/js.js"></script> 
 
<!-- PrettyPhoto file --> 
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/prettyPhoto.css" type="text/css" media="screen" /> 
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.prettyPhoto.js"></script> 
<script type="text/javascript" charset="utf-8"> 
jQuery(document).ready(function($){ 
    $("a[rel^='prettyPhoto']").prettyPhoto(); 
}); 
</script> 
</head> 
<body <?php body_class(); ?>> 
	<header class="header"> 
    	<div class="hdrTop"> 
    		<div class="inWrap"> 
                <div class="hdrLeft"> 
                    <a class="main_logo" href="<?php echo bloginfo('url'); ?>"><img src="<?php echo ot_get_option('home_logo'); ?>" alt="Home Logo"></a> 
                    <h1> 
                        <a href="<?php echo bloginfo('url'); ?>"> 
							<?php $site_name = ot_get_option('institute_name_bangla'); if($site_name){ echo $site_name; } else { echo bloginfo('name'); } ?></a> 
                        <span><a href="<?php echo bloginfo('url'); ?>"><?php echo ot_get_option('institute_name_english'); ?></a></span> 
                    </h1> 
                </div><!--End Of hdrLeft--> 
                <div class="hdrRight"> 
                	 
                </div><!--End Of hdrRight--> 
                <div class="clear">&nbsp;</div> 
        	</div><!--End Of inWrap--> 
        </div><!--End Of hdrTop--> 
        <div class="hdrBtm"> 
        	<div class="inWrap"> 
            	<a id="mobMenuBtn" href="javascript:;"></a> 
				<?php 
					$eit_menu = array( 
						'theme_location'	=> 'main_menu', 
						'menu'				=> '', 
						'container'			=> '', 
						'menu_class'		=> 'mainMenu', 
						'menu_id'		=> 'menu', 
						'items_wrap'		=> '<ul id="menu" class="%2$s">%3$s</ul>', 
					); 
					wp_nav_menu( $eit_menu ); 
				?>            	 
            </div><!--End Of hdrBtm--> 
        </div><!--End Of inWrap--> 
    </header><!--End Of header--> 
	<?php //global $template; echo $template; ?> 

Did this file decode correctly?

Original Code

<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) & !(IE 8)]><!-->
<html <?php language_attributes(); ?>>

<head>
<title><?php wp_title( '|', true, 'right' ); ?></title>
<meta charset="<?php bloginfo( 'charset' ); ?>"> 
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/ie.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/uikit.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/css/responsive.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" media="screen" href="css/ie.css" />
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<?php
    wp_enqueue_script('jquery'); 
    wp_localize_script('jquery', 'smc', array(
	    'ajaxURL' => admin_url('admin-ajax.php'),
        'nonce' => wp_create_nonce( 'smc-parvez' )
    ));
    wp_head(); 
?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/uikit.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.carouFredSel.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/js.js"></script>

<!-- PrettyPhoto file -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/prettyPhoto.css" type="text/css" media="screen" />
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" charset="utf-8">
jQuery(document).ready(function($){
    $("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
</head>
<body <?php body_class(); ?>>
	<header class="header">
    	<div class="hdrTop">
    		<div class="inWrap">
                <div class="hdrLeft">
                    <a class="main_logo" href="<?php echo bloginfo('url'); ?>"><img src="<?php echo ot_get_option('home_logo'); ?>" alt="Home Logo"></a>
                    <h1>
                        <a href="<?php echo bloginfo('url'); ?>">
							<?php $site_name = ot_get_option('institute_name_bangla'); if($site_name){ echo $site_name; } else { echo bloginfo('name'); } ?></a>
                        <span><a href="<?php echo bloginfo('url'); ?>"><?php echo ot_get_option('institute_name_english'); ?></a></span>
                    </h1>
                </div><!--End Of hdrLeft-->
                <div class="hdrRight">
                	
                </div><!--End Of hdrRight-->
                <div class="clear">&nbsp;</div>
        	</div><!--End Of inWrap-->
        </div><!--End Of hdrTop-->
        <div class="hdrBtm">
        	<div class="inWrap">
            	<a id="mobMenuBtn" href="javascript:;"></a>
				<?php
					$eit_menu = array(
						'theme_location'	=> 'main_menu',
						'menu'				=> '',
						'container'			=> '',
						'menu_class'		=> 'mainMenu',
						'menu_id'		=> 'menu',
						'items_wrap'		=> '<ul id="menu" class="%2$s">%3$s</ul>',
					);
					wp_nav_menu( $eit_menu );
				?>            	
            </div><!--End Of hdrBtm-->
        </div><!--End Of inWrap-->
    </header><!--End Of header-->
	<?php //global $template; echo $template; ?>

Function Calls

language_attributes 1

Variables

None

Stats

MD5 5895dbbb4eb6639bf36f3b4b0c340efc
Eval Count 0
Decode Time 91 ms