Page not found error while fetching local file in laravel 7 - php

I'm trying to fetch local product description file,
In products page while cone clicks on Read more option for full product description, it shows error404 page not found.
The local product file path is resources/views/html/products/chili.blade.php, here product is chili.
<div class="col-md-4 services-grid">
<div class="history-grid-image">
<img src="images/Chilli Farm.jpg" class="img-responsive" alt="">
</div>
<div class="services-info">
<h4>Chili</h4>
<p>The Chili pepper is the fruit of plants from the genus capsicum which are members of nightshade family Solanaceae.
<!-- Chili is extremely popular in India as it brings heat to the food. -->
<!-- India having a rich history of spices and mostly chili finds a place in every dish of Indian food.<br> -->
<!-- Medicinal properties: Capsaicin is the chemical used in plain reliever ointment.
Capsaicin also used in pepper spray and tear gas as chemical irritants to control the crowd in an emergency situation. -->
<!-- Rich in : vitamin B6, vitamin A, iron, copper, potassium and a small amount of protein and carbohydrates.<br> -->
<!-- Helps in digestion, Weight loss, No Cholesterol Content. -->
<!-- Good for Diabetic people. -->
<!-- Fact : Chili was first introduced to India by the Portuguese towards the end of the century.</p> -->
<a class="more" href="{{ url('products-chili') }}"> Read More</a>
</div>
</div>
Here's product description file
#extends("layouts.html")
#section("title", "Chili|GreenGoodsExports")
#section("chili")
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!--banner-->
<div class="banner-1">
</div>
<!--//banner-->
<!--single-page-->
<div class="single">
<div class="container">
<h2 class="tittle-one">Chili</h2>
<div class="single-page-artical">
<div class="artical-content">
<h4>Chili</h4>
<img class="img-responsive" src="images/Chilli Farm.jpg" alt=" " style="visibility: visible; animation-delay: 0.5s; animation-name: zoomIn;">
<p>The Chili pepper is the fruit of plants from the genus capsicum which are members of nightshade family Solanaceae.
Chili is extremely popular in India as it brings heat to the food.
India having a rich history of spices and mostly chili finds a place in every dish of Indian food.<br>
Medicinal properties: Capsaicin is the chemical used in plain reliever ointment.
Capsaicin also used in pepper spray and tear gas as chemical irritants to control the crowd in an emergency situation.
Rich in : vitamin B6, vitamin A, iron, copper, potassium and a small amount of protein and carbohydrates.<br>
Helps in digestion, Weight loss, No Cholesterol Content.
Good for Diabetic people.
Fact : Chili was first introduced to India by the Portuguese towards the end of the century.</p>
</div>
<div class="artical-links">
<ul>
<li><i class="glyphicon glyphicon-calendar" aria-hidden="true"></i><span>March 10, 2016</span></li>
<li><i class="glyphicon glyphicon-user" aria-hidden="true"></i><span>admin</span></li>
<li><i class="glyphicon glyphicon-envelope" aria-hidden="true"></i><span>No comments</span></li>
<li><i class="glyphicon glyphicon-share" aria-hidden="true"></i><span>View posts</span></li>
</ul>
</div>
<div class="comment-grid-top">
<h3>Responses</h3>
<div class="comments-top-top">
<div class="top-comment-left">
<img class="img-responsive" src="images/co.png" alt="">
</div>
<div class="top-comment-right">
<ul>
<li><span class="left-at">Admin</span></li>
<li><span class="right-at">March 10, 2016 at 10.30am</span></li>
<li><a class="reply" href="#">Reply</a></li>
</ul>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.The point of using Lorem Ipsum is that it has a more-or-less </p>
</div>
<div class="clearfix"> </div>
</div>
<div class="comments-top-top top-grid-comment">
<div class="top-comment-left">
<img class="img-responsive" src="images/co.png" alt="">
</div>
<div class="top-comment-right">
<ul>
<li><span class="left-at">Admin</span></li>
<li><span class="right-at">March 18, 2016 at 10.30am</span></li>
<li><a class="reply" href="#">Reply</a></li>
</ul>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.The point of using Lorem Ipsum is that it has a more-or-less </p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="artical-commentbox">
<h3>leave a comment</h3>
<div class="table-form">
<form>
<input placeholder="Name" type="text" required="">
<input placeholder="Email" type="email" required="">
<input placeholder="Phone" type="text" required="">
<textarea placeholder="Message"></textarea>
<input type="submit" value="Send">
</form>
</div>
</div>
</div>
</div>
</div>
<!--single-page-->
</body>
</html>
#endsection
Here's web.php code
Route::get("/products/chili", "ProductsController#chili")->name('products-chili');
Here's ProductsController.php code
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProductsController extends Controller
{
public function chili() {
return view("html.products1.chili");
}
Please help me out, thanks...

In you return view is it not suppose to be
return view("html.products.chili");
instead of
return view("html.products1.chili");
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProductsController extends Controller
{
public function chili() {
return view("html.products.chili");
}
}

For the #extends('layouts.html') to be effective there must be a #yield('chili') in your html.blade.php which will yield the content of the 'chili' section from your chili.blade.php
NB: html.blade.php contains all the required CSS and JS files
see below:
For your html.blade.php
<!DOCTYPE html>
<html>
<head>
<!--include-all-your-head-contents-including-meta-tags-css-links-and-js-->
#yield('title')
</head>
<body>
#yield('chili')
<!--include-all-your-scripts-required-->
</body>
</html>
For your chili.blade.php
#extends('layouts.html')
#section("title", "Chili|GreenGoodsExports")
#section("chili")
<!--banner-->
<div class="banner-1">
</div>
<!--//banner-->
<!--single-page-->
<div class="single">
<div class="container">
<h2 class="tittle-one">Chili</h2>
<div class="single-page-artical">
<div class="artical-content">
<h4>Chili</h4>
<img class="img-responsive" src="images/Chilli Farm.jpg" alt=" " style="visibility: visible; animation-delay: 0.5s; animation-name: zoomIn;">
<p>The Chili pepper is the fruit of plants from the genus capsicum which are members of nightshade family Solanaceae.
Chili is extremely popular in India as it brings heat to the food.
India having a rich history of spices and mostly chili finds a place in every dish of Indian food.<br>
Medicinal properties: Capsaicin is the chemical used in plain reliever ointment.
Capsaicin also used in pepper spray and tear gas as chemical irritants to control the crowd in an emergency situation.
Rich in : vitamin B6, vitamin A, iron, copper, potassium and a small amount of protein and carbohydrates.<br>
Helps in digestion, Weight loss, No Cholesterol Content.
Good for Diabetic people.
Fact : Chili was first introduced to India by the Portuguese towards the end of the century.</p>
</div>
<div class="artical-links">
<ul>
<li><i class="glyphicon glyphicon-calendar" aria-hidden="true"></i><span>March 10, 2016</span></li>
<li><i class="glyphicon glyphicon-user" aria-hidden="true"></i><span>admin</span></li>
<li><i class="glyphicon glyphicon-envelope" aria-hidden="true"></i><span>No comments</span></li>
<li><i class="glyphicon glyphicon-share" aria-hidden="true"></i><span>View posts</span></li>
</ul>
</div>
<div class="comment-grid-top">
<h3>Responses</h3>
<div class="comments-top-top">
<div class="top-comment-left">
<img class="img-responsive" src="images/co.png" alt="">
</div>
<div class="top-comment-right">
<ul>
<li><span class="left-at">Admin</span></li>
<li><span class="right-at">March 10, 2016 at 10.30am</span></li>
<li><a class="reply" href="#">Reply</a></li>
</ul>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.The point of using Lorem Ipsum is that it has a more-or-less </p>
</div>
<div class="clearfix"> </div>
</div>
<div class="comments-top-top top-grid-comment">
<div class="top-comment-left">
<img class="img-responsive" src="images/co.png" alt="">
</div>
<div class="top-comment-right">
<ul>
<li><span class="left-at">Admin</span></li>
<li><span class="right-at">March 18, 2016 at 10.30am</span></li>
<li><a class="reply" href="#">Reply</a></li>
</ul>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.The point of using Lorem Ipsum is that it has a more-or-less </p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="artical-commentbox">
<h3>leave a comment</h3>
<div class="table-form">
<form>
<input placeholder="Name" type="text" required="">
<input placeholder="Email" type="email" required="">
<input placeholder="Phone" type="text" required="">
<textarea placeholder="Message"></textarea>
<input type="submit" value="Send">
</form>
</div>
</div>
</div>
</div>
</div>
<!--single-page-->
#endsection
You can see more here: https://laravel.com/docs/7.x/blade

Related

php get function not working in wordpress

Here i am trying to convert my html and css template in wordpress theme and i have four php files (1) index.php, (2) header.php, (3) feature.php and (4) footer.php.
In index.php files i am getting the other three files using function <?php get_header(); ?>, <?php get_feature (); ?>,<?php get_footer (); ?>.
Now on using function <?php get_header(); ?>,<?php get_footer (); ?> in index.php it shows the header and footer section but on including <?php get_feature (); ?> between header and footer it shows error indicating <?php get_feature (); ?>line saying "Fatal error: Call to undefined function get_feature() in C:\xampp\htdocs\Alvin Lemo\wordpress\wp-content\themes\alvinlimo\index.php on line 2" and does not show the feature section and footer section.
Below is what i have done
In index.php
<?php get_header (); ?>
<?php get_feature(); ?> <!--- Error Showing Line -->
<?php get_footer (); ?>
In header.php
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Alvin Lemo</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" >
<?php wp_head (); ?>
</head>
<body>
<div id="myNav" class="overlay">
×
<div class="overlay-content">
<div class="container">
<h2 style="color:white">Please Login To Resere Your Fleet With Us</h2><br />
<form>
<div class="form-group">
<input class="form-control" id="email" style="width:50%;height:40px;color:black;border-radius:4px;font-size:18px" placeholder="Enter email"><br /><br />
</div>
<div class="form-group">
<input class="form-control" id="pwd" style="width:50%;height:40px;color:black;border-radius:4px;font-size:18px" placeholder="Enter password"><br /><br />
</div>
<div class="checkbox">
</div>
<button type="submit" class="btn btn-default">Rserve</button>
</form>
</div>
</div>
</div>
<div id="myNavv" class="overlay">
×
<div class="overlay-content">
<div class="container">
<h2 style="color:white">Please Register To Reserve Your Fleet </h2><br />
<form>
<div class="form-group">
<input class="form-control" id="email" style="width:50%;height:40px;color:black;border-radius:4px;font-size:18px" placeholder="Enter FullName"><br /><br />
</div>
<div class="form-group">
<input class="form-control" id="email" style="width:50%;height:40px;color:black;border-radius:4px;font-size:18px" placeholder="Enter email"><br /><br />
</div>
<div class="form-group">
<input class="form-control" id="pwd" style="width:50%;height:40px;color:black;border-radius:4px;font-size:18px" placeholder="Enter password"><br /><br />
</div>
<button type="submit" class="btn btn-default">Register</button>
</form>
</div>
</div>
</div>
<!-- Header
================================================== -->
<header>
<div class="logo">
<a class="smoothscroll" href="#hero"><!--<img alt="" src="images/logo.png">-->
<h2>A.L.S</h2>
</a>
</div>
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show Menu</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide Menu</a>
<ul id="nav" class="nav">
<li><a class="smoothscroll" href="#features">EVENT TRANSPORTATION</a></li>
<li><a class="smoothscroll" href="#pricing">Services</a></li>
<li><a class="smoothscroll" href="#screenshots">OUR FLEET</a></li>
<li><a class="smoothscroll" href="#testimonials">Testimonials</a></li>
<li><a class="smoothscroll" href="#subscribe">CONTACT</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<ul class="header-social">
<li><i class="fa fa-facebook"></i></li>
<li><i class="fa fa-twitter"></i></li>
<li><i class="fa fa-google-plus"></i></li>
</ul>
</header>
<!-- Header End -->
<!-- Homepage Hero
================================================== -->
<section id="hero">
<div class="row">
<div class="twelve columns">
<div class="hero-text">
<br /><br /><br />
<h1 class="responsive-headline">Welcome To Alvin's Limo</h1>
<p>
Little about alivin's limo services.
</p>
</div>
<br />
<div class="buttons">
<a class="button trial" onclick="openNav()">Reserve Fleet</a>
<a class="button learn-more smoothscroll" onclick="openNavv()">Register</a>
</div>
<br /><br /><br /><br /><br /><br /><br />
</div>
</div>
</section>
<!-- Homepage Hero end -->
In feature.php
<!-- Features Section
================================================== -->
<section id='features'>
<div class="row section-head">
<h1>EVENT TRANSPORTATION</h1>
<p>
We Fell Happy To Be Part Of Your Special Ocassion
</p>
</div>
<div class="row feature design">
<div class="six columns right">
<h3> Wedding Transporation</h3>
<p>LMake your "most memorable day" of your life more special by Alvin Wedding Limo Service.
Your weddings transportation will be most beautiful latest model limousine imaginable,
with all the special amenities you desire. Our chauffeurs are always on time, courteous,
and dressed in black suit. Let us take you to the church and from the church to the reception and
from the reception to the airport or any special place in Texas for your honeymoon. You don't need
to worry about coordinating transportation from each destination, we can help arrange your weddings
party pick-ups and drop-offs and everything in between. We do service all the hills country wedding
venues. Feel free to check our wedding reviews - WEDDINGWIRE-THE KNOTT.
</p>
</div>
<div class="six columns feature-media left">
<img src="images/fpt-112704-Wedding-Flowers.jpg" />
</div>
</div>
<div class="row feature responsive">
<div class="six columns left">
<h3>Wine Transportation.</h3>
<p>
Alvin Limousine Services share your passion for wine; that’s why we specialize in hills country
wine tours. We offer a diverse selection of vehicles ranging from sedans, stretch limousines to
transport you affordably in luxury, safety, and style! Leave the driving, directions, stress,
and traffic to us while our Chauffeur whisks you away to your perfect day!
Our impressive customer list is concrete evidence of our ability to outperform our competition,
consistently exceeding our customers’ expectations. We will make your tour the best tour you have
ever known. We have dedicated chauffeur that specialize in wine tours, Brewery and Vodka distillery.
</p>
</div>
<div class="six columns feature-media right">
<img src="images/wine-tours-preferrred-limo.jpg" />
</div>
</div>
<div class="row feature cross-browser">
<div class="six columns right">
<h3>Concert</h3>
<p>
Whether you want to see a Show, Concert, Opera, Symphony or any other fun thing you can think of,
Alvin Limos will provide you personal and reliable chauffeured Limousine.
Reserve luxury town car Sedan or our luxurious stretch limousine for hassle free ride
from navigation, traffic, and struggling the multitude of cars for parking. Roll up with
style to the front door of any events location you desire.
Let the professional Chauffeurs of Alvin Limousine Service take you to your next Concert,
Movie premier, Opera, Symphony or any night out events with comfort and style.
We get you there on time in safely and in style ; Alvin Limo will ensure you have the time of
your life. We are the Leader in providing a full Service Limousine Transportation.
</p>
</div>
<div class="six columns feature-media left">
<img src="images/thenextweb.jpg" />
<!--<img src="images/feature-image-3.png" alt="" />-->
</div>
</div>
<div class="row feature video">
<div class="six columns left">
<h3>ACL/SXSW/Austin 360</h3>
<p>
What you hear is true. With vibrant entertainment and culture, inspiring cuisine and stunning outdoor settings, Austin lets you create a soundtrack all your own. We're home to more than 250 music venues and a vibrant arts scene. So take a look around, and put Live Music Capital of the World® on your playlist. Whether you want to take ride thought Austin or plan a night out with friends and family we will do that in style. Alvin Limousine is a premier transportation when it comes to Austin Texas culture and events. Come one come all and let us drive though the ins and outs of this beautiful happening city.
Alvin Limousine staff are very discrete and confident with all our celebrities and movies stars that we have been transporting for years.
</p>
</div>
<div class="six columns feature-media right">
<img src="images/1ff7f709cd8ef280ec5f2b317f79ba14-2b32e6b5be7f48f4557299fc9db819c3.png" />
</div>
</div>
<div class="row feature cross-browser">
<div class="six columns right">
<h3>Convention Center</h3>
<p>
The Austin Convention Center, a premier facility located in the heart of the capital city’s downtown business district, has emerged as a leader in the convention and meeting industry.
Alvin’s Limousine Services is proud to be part of your success by providing you or your guests with a premier chauffeured services . We can accommodate small or large groups .
- Airport Transportations
- Shuttling your groups through out your meetings
- Advertising your business on our Cars. (Wrap the cars with your Logo or new Product.**Extra Fees apply)
</p>
</div>
<div class="six columns feature-media left">
<img src="images/ARATA_ISOZAKI_RHWL_QNCC_DOHA_QATAR_PAN_060313_0009.jpg" />
</div>
</div>
<div class="row feature responsive">
<div class="six columns left">
<h3>Circuits of America - Formula 1</h3>
<p>
Circuit Of The Americas is a multi-purpose facility that will host the most prestigious racing events in the world, including the Formula 1 United States Grand Prix. It is the first purpose-built Grand Prix facility in the U.S Austin Texas
Circuit of The Americas (COTA) in Austin, Texas, is the home of world championships and a world-class destination for premium sports and entertainment.
Alvin’s Limousine Services is proud to be the leading transportations in Austin Texas, we can provide you or your Guests with many VIP Packages that can suits your needs , from Town car service , SUV’s or Stretch Limousine ,we are your one stop solutions to your transportations for World-Class destination . For International reservations , Please use our 24/7 reservations systems for quick quote and complete reservation confirmed within one hour or you can
Skpe us at : Austinlimo
</p>
</div>
<div class="six columns feature-media right">
<img src="images/bQwIzE.jpg" />
</div>
</div>
<div class="row feature cross-browser">
<div class="six columns right">
<h3>Prom</h3>
<p>
Whether you want to see a Show, Concert, Opera, Symphony or any other fun thing you can think of, Alvin Limos will provide you personal and reliable chauffeured Limousine. Reserve luxury town car Sedan or our luxurious stretch limousine for hassle free ride from navigation, traffic, and struggling the multitude of cars for parking. Roll up with style to the front door of any events location you desire.
Let the professional Chauffeurs of Alvin Limousine Service take you to your next Concert, Movie premier, Opera, Symphony or any night out events with comfort and style.
We get you there on time in safely and in style ; Alvin Limo will ensure you have the time of your life. We are the Leader in providing a full Service Limousine Transportation.
</p>
</div>
<div class="six columns feature-media left">
<img src="images/prom-header.jpg" />
</div>
</div>
</section>
<!-- Features Section end -->
In footer.php
<!-- Footer
================================================== -->
<footer>
<div class="row">
<div class="six columns right-cols">
<div class="row">
<div class="columns">
<h2 class="address">Come Visit</h2>
<p>
7901 Cameron Rd Bldg3 Suite 312, Austin tx 78754<br>
</p>
</div>
<div class="columns last">
<h2 class="contact">Contact Us</h2>
<ul>
<li>512 300 1379</li>
<li>someone#woosite.com</li>
</ul>
</div>
</div>
</div>
<p class="copyright">© 2014 Alvin's Limousine Services | Design by <a>cts-Design Team</a></p>
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#hero"><i class="icon-up-open"></i></a>
</div>
</div> <!-- Row End -->
</footer>
<!-- Footer End-->
<?php wp_footer (); ?>
<!-- Java Script
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2 /jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js">
</script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/jquery.fitvids.js"></script>
<script src="js/imagelightbox.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/main.js">
</script>
</body>
</html>
Functions like get_header() and get_footer() are predefined WordPress functions. To get custom part of template we use
<?php get_template_part( string $slug, string $name = null ) ?>
As stated in documentation, patterns it uses to find files are:
{slug}.php
{slug}-{name}.php
If the theme contains no specified file then no template will be included.
The template is included using require, not require_once, so you may include the same template part multiple times.
Finally, this one should load your feature template:
<?php get_template_part( 'feature' ) ?>
Source: https://developer.wordpress.org/reference/functions/get_template_part/
You try to use an undefined function, that is maybe coming from a third party plugin. get_feature() is not a native WordPress function.
If you want to display the featured image, you can use get_the_post_thumbnail() (more details
Hope it helps

How I make rss feed like blogger

guys I am doing some stuff which is related to rssfeed. I built a page for rss feed all the things are going well but when I try to test the feed or use the feed I can't, Here is my code. Actually I am building rss feed for my blogger so I want to be it like that, any ways just tell me where am I wrong
<?php
require_once('simple_html_dom.php');
$html = new simple_html_dom();
$xml=simplexml_load_file("ad.xml");
header('Content-Type: application/atom+xml');
$b="<?xml version='1.0' encoding='UTF-8'?>
<feed>";
echo $b;
foreach($xml->url as $s){
$s=$s->loc;
$html = file_get_html($s);
$element= $html->find('div[class=post-content clear-block]');
// Find all links
$vez=$html->find('div[class=post-date]');
$p = '|<a [^>]*href="http://onlinegamesocean.com[^"]*"[^>]*>.*</a>|iU';
$h = $html->find('h1[class=title]');
if(empty($vez)){
foreach($h as $ha){
echo "<entry><title type='text'>".htmlentities($ha->plaintext)."</title>";
}
foreach($element as $a) {
if ($a === end($element))
echo "<content type='html'>".htmlentities(preg_replace($p, '', $a))."</content></entry>";
}
}
}
echo "</feed>";
?>
Output:
<?xml version='1.0' encoding='UTF-8'?>
<feed><entry><title type='text'>Offworld Trading Company Free Download</title><content type='html'><div class="post-content clear-block"> <p style="text-align: center;"></p> <h5>ABOUT THE GAME</h5> <p>Mars has been colonized and has invited you to lend a hand to make sure the new colony has a shot at success. But you’re not the only one that’s been invited, other business rivals are here as well and they have no qualms about playing dirty to gain the choicest territories on the Martian surface and driving their competitors out of business.</p> <p>Title: Offworld Trading Company<br /> Genre: Indie, Simulation, Strategy<br /> Developer: Mohawk Games<br /> Publisher: Stardock Entertainment<br /> Release Date: 28 Apr, 2016</p> <p><img class="lazy lazy-hidden" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-cke-saved-src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-type="image" data-lazy-src="http://i57.tinypic.com/5oi24i.jpg" /><strong>Offworld.Trading.Company.DLC-BAT </strong>{ <a href="http://www13.zippyshare.com/v/5n5nCVek/file.html" target="_blank" data-cke-saved-href="http://www13.zippyshare.com/v/5n5nCVek/file.html">Download </a>| <a href="https://www.sendspace.com/file/5jvzun" target="_blank" data-cke-saved-href="https://www.sendspace.com/file/5jvzun">Download </a>| <a href="https://openload.co/f/tiwRzi0Uf9c/b-oftrcodlc.rar" target="_blank" data-cke-saved-href="https://openload.co/f/tiwRzi0Uf9c/b-oftrcodlc.rar">Download </a>| <a href="http://hugefiles.net/4ku46juf0xty" target="_blank" data-cke-saved-href="http://hugefiles.net/4ku46juf0xty">Download </a>| <a href="https://1fichier.com/?duu3oi6j1g" target="_blank" data-cke-saved-href="https://1fichier.com/?duu3oi6j1g">Download </a>| <a href="https://userscloud.com/9aowye1vsf04" target="_blank" data-cke-saved-href="https://userscloud.com/9aowye1vsf04">Download </a>| <a href="http://up07.net/4yz42d55gvi4" target="_blank" data-cke-saved-href="http://up07.net/4yz42d55gvi4">Download </a>| <a href="http://jheberg.net/captcha/b-oftrcodlc/" target="_blank" data-cke-saved-href="http://jheberg.net/captcha/b-oftrcodlc/">Download </a>| <a href="http://www.multiup.org/download/329c0ab802c97f5a48a728ea27000235/b-oftrcodlc.rar" target="_blank" data-cke-saved-href="http://www.multiup.org/download/329c0ab802c97f5a48a728ea27000235/b-oftrcodlc.rar">Download </a>}</p> <p>DLC’s:<br /> • Offworld Trading Company – Real Mars Map Pack DLC<br /> • Offworld Trading Company – Almanac DLC</p> <p>Note:<br /> • Game prompts an early access notice on first run, but it is out of EA state as also evident on the version number v1.0.12745<br /> • Also the DLC’s only became available after EA state changed</p> <p>Offworld Trading Company Free Download<br /> Size: 656 MB<br /> ——————————-</p> <p><strong>ONE FTP LINK</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"></div> </div> <p><strong>DIRECT LINK</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://kumpulbagi.id/anas45/anas45-363423/hi-oftrco,2697520.iso" target="_blank" data-cke-saved-href="http://kumpulbagi.id/anas45/anas45-363423/hi-oftrco,2697520.iso">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>OPENLOAD</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://openload.co/f/1b-KUEcxT8g/hi-oftrco.iso" target="_blank" data-cke-saved-href="https://openload.co/f/1b-KUEcxT8g/hi-oftrco.iso">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>UP07</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://up07.net/uyr0e7zq4mxt" target="_blank" data-cke-saved-href="http://up07.net/uyr0e7zq4mxt">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>1FICHIER</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://1fichier.com/?c8p9sz5gci" target="_blank" data-cke-saved-href="https://1fichier.com/?c8p9sz5gci">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>UPTOBOX</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://uptobox.com/5ovs6xtrdamz" target="_blank" data-cke-saved-href="http://uptobox.com/5ovs6xtrdamz">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>HUGEFILES</strong></p> <!-- Quick Adsense WordPress Plugin: http://quicksense.net/ --> <div style="float:none;margin:10px 0 10px 0;text-align:center;"> <center><script language='Javascript'> <!-- document.write(unescape('%3C%64%69%76%20%73%74%79%6C%65%3D%22%68%65%69%67%68%74%3A%32%38%32%70%78%3B%77%69%64%74%68%3A%33%33%36%70%78%3B%6F%76%65%72%66%6C%6F%77%3A%68%69%64%64%65%6E%3B%62%61%63%6B%67%72%6F%75%6E%64%3A%23%63%63%63%3B%22%20%69%64%3D%22%61%64%64%69%76%22%3E%0A%3C%69%66%72%61%6D%65%20%73%74%79%6C%65%3D%22%68%65%69%67%68%74%3A%37%35%30%70%78%3B%77%69%64%74%68%3A%33%33%36%70%78%22%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%6F%63%63%65%61%6E%67%61%6D%65%73%72%65%76%69%65%77%73%2E%62%6C%6F%67%73%70%6F%74%2E%63%6F%6D%2F%70%2F%32%35%30%2E%68%74%6D%6C%3F%69%64%3D%78%32%6B%67%30%33%6A%22%20%73%63%72%6F%6C%6C%69%6E%67%3D%22%6E%6F%22%20%69%64%3D%22%61%64%66%72%61%6D%65%22%3E%3C%2F%69%66%72%61%6D%65%3E%3C%2F%64%69%76%3E%0A%3C%21%2D%2D%61%64%64%20%6A%71%75%65%72%79%20%69%66%20%6E%6F%74%20%61%64%64%65%64%2D%2D%3E%0A%3C%73%63%72%69%70%74%20%73%72%63%3D%22%68%74%74%70%73%3A%2F%2F%61%6A%61%78%2E%67%6F%6F%67%6C%65%61%70%69%73%2E%63%6F%6D%2F%61%6A%61%78%2F%6C%69%62%73%2F%6A%71%75%65%72%79%2F%31%2E%31%31%2E%33%2F%6A%71%75%65%72%79%2E%6D%69%6E%2E%6A%73%22%3E%3C%2F%73%63%72%69%70%74%3E%0A%3C%21%2D%2D%61%64%64%20%6A%71%75%65%72%79%20%69%66%20%6E%6F%74%20%61%64%64%65%64%2F%2D%2D%3E%0A%3C%73%63%72%69%70%74%3E%6A%51%75%65%72%79%28%77%69%6E%64%6F%77%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%0A%6A%51%75%65%72%79%28%22%23%61%64%66%72%61%6D%65%22%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%6A%51%75%65%72%79%28%27%23%61%64%66%72%61%6D%65%27%29%2E%63%73%73%28%27%68%65%69%67%68%74%27%2C%27%39%30%27%29%0A%73%65%74%54%69%6D%65%6F%75%74%28%20%66%75%6E%63%74%69%6F%6E%28%29%7B%20%6A%51%75%65%72%79%28%27%23%61%64%64%69%76%27%29%2E%63%73%73%28%27%62%61%63%6B%67%72%6F%75%6E%64%27%2C%27%74%72%61%6E%73%70%61%72%65%6E%74%27%29%7D%2C%20%31%30%30%30%20%29%3B%7D%29%3B%0A%24%28%27%23%61%64%66%72%61%6D%65%27%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%24%28%27%23%61%64%66%72%61%6D%65%27%29%2E%63%6F%6E%74%65%6E%74%73%28%29%2E%66%69%6E%64%28%22%62%6F%64%79%22%29%2E%61%64%64%43%6C%61%73%73%28%27%69%66%72%61%6D%65%64%27%29%3B%7D%29%3B%0A%7D%29%3B%3C%2F%73%63%72%69%70%74%3E')); //--> </script></center> </div> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://hugefiles.net/q0iqt3v4cy21" target="_blank" data-cke-saved-href="http://hugefiles.net/q0iqt3v4cy21">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>MEDIAFREE</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://mediafree.co/l2y54l6fqew1/hi-oftrco.iso.html" target="_blank" data-cke-saved-href="http://mediafree.co/l2y54l6fqew1/hi-oftrco.iso.html">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>USERSCLOUD</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://userscloud.com/krigot141ekc" target="_blank" data-cke-saved-href="https://userscloud.com/krigot141ekc">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>JHEBERG</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://jheberg.net/captcha/hi-oftrco/" target="_blank" data-cke-saved-href="http://jheberg.net/captcha/hi-oftrco/">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>GO4UP</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://go4up.com/dl/9bffa4cfb5f8/hi-oftrco.iso" target="_blank" data-cke-saved-href="http://go4up.com/dl/9bffa4cfb5f8/hi-oftrco.iso">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>MULTI LINKS</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://www.multiup.org/download/8a76e30e7547e475ff0709052b81235a/hi-oftrco.iso" target="_blank" data-cke-saved-href="http://www.multiup.org/download/8a76e30e7547e475ff0709052b81235a/hi-oftrco.iso">Offworld.Trading.Company-HI2U.iso</a></div> </div> <p><strong>TORRENT</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"></div> </div> <div> <blockquote><p>Enjoy</p></blockquote> </div> <div id="tabs-21031-0-1"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"><strong>MINIMUM:</strong></p> <ul> <li> <ul class="bb_ul"> <li><strong>OS:</strong> Windows 10 / 8.1 / 7 64-bit</li> <li><strong>Processor:</strong> 1.8 GHz Intel Core 2 Duo / 2.0 GHz AMD Athlon X2 64</li> <li><strong>Memory:</strong> 2 GB RAM</li> <li><strong>Graphics:</strong> Nvidia GeForce 8800 GT / ATI Radeon HD 3870 / Intel HD Graphics 4600</li> <li><strong>DirectX:</strong> Version 11</li> <li><strong>Network:</strong> Broadband Internet connection</li> <li><strong>Storage:</strong> 2 GB available space</li> <li><strong>Sound Card:</strong></li> </ul> </li> </ul> </div> <div class="game_area_sys_req_rightCol"><strong>RECOMMENDED:</strong></p> <ul> <li> <ul class="bb_ul"> <li><strong>Processor:</strong> 3 GHz Intel Quad-Core Processor / 3.2 GHz AMD Six-Core Processor</li> <li><strong>Memory:</strong> 4 GB RAM</li> <li><strong>Graphics:</strong> Nvidia GeForce GTX 460 / AMD Radeon HD 7850</li> <li><strong>DirectX:</strong> Version 11</li> <li><strong>Network:</strong> Broadband Internet connection</li> <li><strong>Storage:</strong> 2 GB available space</li> <li><strong>Sound Card:</strong></li> </ul> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div id="tabs-21031-0-3"><center><br /> <iframe src="https://www.youtube.com/embed/wHWb_IsM1HU" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></center></div> <div id="tabs-21031-0-4"> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><strong>Offworld Trading Company Free Download</strong><br /> &#8211; Extract<br /> &#8211; Burn or mount the .iso<br /> &#8211; Run setup.exe and install<br /> &#8211; Copy Crack<br /> &#8211; Play</div> </div> </div> <div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div> <div class="wp_rp_wrap wp_rp_vertical_m" id="wp_rp_first"><div class="wp_rp_content"><h3 class="related_post_title">You May Also Like:</h3><ul class="related_post wp_rp"><li data-position="0" data-poid="in-22373" data-post-type="none" ></li><li data-position="1" data-poid="in-22225" data-post-type="none" ></li><li data-position="2" data-poid="in-23294" data-post-type="none" ></li><li data-position="3" data-poid="in-21988" data-post-type="none" ></li><li data-position="4" data-poid="in-22659" data-post-type="none" ></li><li data-position="5" data-poid="in-22357" data-post-type="none" ></li></ul></div></div> </div></content></entry><entry><title type='text'>Left Alone Free Download</title><content type='html'><div class="post-content clear-block"> <p style="text-align: center;"></p> <h5>ABOUT THE GAME</h5> <p>Left alone is a psychological horror game set in multiple believable interior and exterior environments. The game has a unique, high octane atmosphere which means you’ll feel like you’re truly beginning an adventure you’ll never quite forget.</p> <p>Title: Left Alone<br /> Genre: Action, Adventure, Indie<br /> Developer: Volumetric Games<br /> Publisher: Volumetric Games<br /> Release Date: 28 Apr, 2016</p> <p>Left Alone Free Download<br /> Size: 680 MB<br /> ——————————-</p> <p><strong>ONE FTP LINK</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"></div> </div> <p><strong>DIRECT LINK</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://kumpulbagi.id/anas45/anas45-363423/plaza-left-alone,2696467.iso" target="_blank" data-cke-saved-href="http://kumpulbagi.id/anas45/anas45-363423/plaza-left-alone,2696467.iso">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>OPENLOAD</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://openload.co/f/ZYE1o2I-3Vc/plaza-left.alone.iso" target="_blank" data-cke-saved-href="https://openload.co/f/ZYE1o2I-3Vc/plaza-left.alone.iso">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>UP07</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://up07.net/5xicihuwfppk" target="_blank" data-cke-saved-href="http://up07.net/5xicihuwfppk">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>1FICHIER</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://1fichier.com/?9sy0zkmtaf" target="_blank" data-cke-saved-href="https://1fichier.com/?9sy0zkmtaf">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>UPTOBOX</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://uptobox.com/cn3svruftm6y" target="_blank" data-cke-saved-href="http://uptobox.com/cn3svruftm6y">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>DOWNACE</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://downace.com/1jjM" target="_blank" data-cke-saved-href="https://downace.com/1jjM">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>HUGEFILES</strong></p> <!-- Quick Adsense WordPress Plugin: http://quicksense.net/ --> <div style="float:none;margin:10px 0 10px 0;text-align:center;"> <center><script language='Javascript'> <!-- document.write(unescape('%3C%64%69%76%20%73%74%79%6C%65%3D%22%68%65%69%67%68%74%3A%32%38%32%70%78%3B%77%69%64%74%68%3A%33%33%36%70%78%3B%6F%76%65%72%66%6C%6F%77%3A%68%69%64%64%65%6E%3B%62%61%63%6B%67%72%6F%75%6E%64%3A%23%63%63%63%3B%22%20%69%64%3D%22%61%64%64%69%76%22%3E%0A%3C%69%66%72%61%6D%65%20%73%74%79%6C%65%3D%22%68%65%69%67%68%74%3A%37%35%30%70%78%3B%77%69%64%74%68%3A%33%33%36%70%78%22%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%6F%63%63%65%61%6E%67%61%6D%65%73%72%65%76%69%65%77%73%2E%62%6C%6F%67%73%70%6F%74%2E%63%6F%6D%2F%70%2F%32%35%30%2E%68%74%6D%6C%3F%69%64%3D%78%32%6B%67%30%33%6A%22%20%73%63%72%6F%6C%6C%69%6E%67%3D%22%6E%6F%22%20%69%64%3D%22%61%64%66%72%61%6D%65%22%3E%3C%2F%69%66%72%61%6D%65%3E%3C%2F%64%69%76%3E%0A%3C%21%2D%2D%61%64%64%20%6A%71%75%65%72%79%20%69%66%20%6E%6F%74%20%61%64%64%65%64%2D%2D%3E%0A%3C%73%63%72%69%70%74%20%73%72%63%3D%22%68%74%74%70%73%3A%2F%2F%61%6A%61%78%2E%67%6F%6F%67%6C%65%61%70%69%73%2E%63%6F%6D%2F%61%6A%61%78%2F%6C%69%62%73%2F%6A%71%75%65%72%79%2F%31%2E%31%31%2E%33%2F%6A%71%75%65%72%79%2E%6D%69%6E%2E%6A%73%22%3E%3C%2F%73%63%72%69%70%74%3E%0A%3C%21%2D%2D%61%64%64%20%6A%71%75%65%72%79%20%69%66%20%6E%6F%74%20%61%64%64%65%64%2F%2D%2D%3E%0A%3C%73%63%72%69%70%74%3E%6A%51%75%65%72%79%28%77%69%6E%64%6F%77%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%0A%6A%51%75%65%72%79%28%22%23%61%64%66%72%61%6D%65%22%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%6A%51%75%65%72%79%28%27%23%61%64%66%72%61%6D%65%27%29%2E%63%73%73%28%27%68%65%69%67%68%74%27%2C%27%39%30%27%29%0A%73%65%74%54%69%6D%65%6F%75%74%28%20%66%75%6E%63%74%69%6F%6E%28%29%7B%20%6A%51%75%65%72%79%28%27%23%61%64%64%69%76%27%29%2E%63%73%73%28%27%62%61%63%6B%67%72%6F%75%6E%64%27%2C%27%74%72%61%6E%73%70%61%72%65%6E%74%27%29%7D%2C%20%31%30%30%30%20%29%3B%7D%29%3B%0A%24%28%27%23%61%64%66%72%61%6D%65%27%29%2E%6C%6F%61%64%28%20%66%75%6E%63%74%69%6F%6E%28%29%20%7B%24%28%27%23%61%64%66%72%61%6D%65%27%29%2E%63%6F%6E%74%65%6E%74%73%28%29%2E%66%69%6E%64%28%22%62%6F%64%79%22%29%2E%61%64%64%43%6C%61%73%73%28%27%69%66%72%61%6D%65%64%27%29%3B%7D%29%3B%0A%7D%29%3B%3C%2F%73%63%72%69%70%74%3E')); //--> </script></center> </div> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://hugefiles.net/eotqcncouwxj" target="_blank" data-cke-saved-href="http://hugefiles.net/eotqcncouwxj">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>MEDIAFREE</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://mediafree.co/7fwl6l1mrhpy/plaza-left.alone.iso.html" target="_blank" data-cke-saved-href="http://mediafree.co/7fwl6l1mrhpy/plaza-left.alone.iso.html">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>USERSCLOUD</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="https://userscloud.com/gk64s7p2nxu9" target="_blank" data-cke-saved-href="https://userscloud.com/gk64s7p2nxu9">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>JHEBERG</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://jheberg.net/captcha/plaza-leftalone/" target="_blank" data-cke-saved-href="http://jheberg.net/captcha/plaza-leftalone/">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>GO4UP</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://go4up.com/dl/12a9e74f7690/plaza-left.alone1.iso" target="_blank" data-cke-saved-href="http://go4up.com/dl/12a9e74f7690/plaza-left.alone1.iso">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>MULTI LINKS</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><a href="http://www.multiup.org/download/e3e833e74d99bb97f9047796ad546da3/plaza-left.alone.iso" target="_blank" data-cke-saved-href="http://www.multiup.org/download/e3e833e74d99bb97f9047796ad546da3/plaza-left.alone.iso">Left.Alone-PLAZA.iso</a></div> </div> <p><strong>TORRENT</strong></p> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"></div> </div> <div> <blockquote><p>Enjoy</p></blockquote> </div> <div id="tabs-21024-0-1"> <div class="game_area_sys_req_leftCol"> <div class="game_area_sys_req_leftCol"> <p><strong>MINIMUM:</strong></p> <ul> <li> <ul class="bb_ul"> <li><strong>OS:</strong> Windows 7 64-bit</li> <li><strong>Processor:</strong> Quad-core CPU ~ 2.5Ghz</li> <li><strong>Memory:</strong> 2 GB RAM</li> <li><strong>Graphics:</strong> GTX 560m / HD6870 1GB or equivalent</li> <li><strong>DirectX:</strong> Version 10</li> <li><strong>Storage:</strong> 1 GB available space</li> </ul> </li> </ul> </div> </div> </div> <div id="tabs-21024-0-3"><center><br /> <iframe src="https://www.youtube.com/embed/EPe5_1wp44Y" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></center></div> <div id="tabs-21024-0-4"> <div class="codecolorer-container text twitlight"> <div class="text codecolorer"><strong>Left Alone Free Download</strong><br /> 1. Extract release<br /> 2. Mount ISO<br /> 3. Install the game<br /> 4. Copy crack from the PLAZA folder<br /> 5. Play!</div> </div> </div> <div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div> <div class="wp_rp_wrap wp_rp_vertical_m" id="wp_rp_first"><div class="wp_rp_content"><h3 class="related_post_title">You May Also Like:</h3><ul class="related_post wp_rp"><li data-position="0" data-poid="in-22746" data-post-type="none" ></li><li data-position="1" data-poid="in-22789" data-post-type="none" ></li><li data-position="2" data-poid="in-22385" data-post-type="none" ></li><li data-position="3" data-poid="in-1216" data-post-type="none" ></li><li data-position="4" data-poid="in-23032" data-post-type="none" ></li><li data-position="5" data-poid="in-23056" data-post-type="none" ></li></ul></div></div> </div></content></entry></feed>
I get the error, When I use to get data from it using xmls function in php. I get correct result and when I try my blogger rss feed or some other website's feeds I get correct results,So my codes which use to get data from xml is correct but the above code may be wrong or I am doing some thing else.
Your approach will be highly appreciable for me. Please help me
instead of htmlentities() function you can use the format of rss 2.0, I call it second way. Any ways, You can use.
<![CDATA[".$VARIABLE."]]>
Hope it works for you.

Dynamic filtration in PHP

I have code for filtration. But the data which filtered was static data. Now I want that data comes from database. Here I shown code snippet for that.
here is the script:
<script>
$('document').ready(function(){
$('#demo').jplist({
itemsBox: '.list'
,itemPath: '.list-item'
,panelPath: '.jplist-panel'
});
});
</script>
and this is the html design:
<div
class="jplist-group"
data-control-type="checkbox-group-filter"
data-control-action="filter"
data-control-name="themes">
<input
data-path=".architecture"
id="architecture"
type="checkbox"
/>
<label for="architecture">Architecture</label>
<input
data-path=".christmas"
id="christmas"
type="checkbox"
/>
<label for="christmas">Christmas</label>
</div>
<!-- item 1 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/arch-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/18/2012</p>
<p class="title">Architecture</p>
<p class="desc">Architecture is both the process and product of planning, designing and construction. Architectural works, in the material form of buildings, are often perceived as cultural symbols and as works of art. Historical civilizations are often identified with their surviving architectural achievements.</p>
<p class="like">25 Likes</p>
<p class="theme">
<span class="architecture">Architecture</span>,
<span class="brown">Brown</span>
</p>
</div>
</div>
Thanks in advance.

Bootstrap 3 IE Grid Compatibillity

I have created a bootstrap 3 website and it looks great except in some versions of Internet Explorer the grids overlap each other. The url is awseattle.com the html code looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="AW Seattle provides luxury transportation services in the Greater Seattle-Tacoma & Airport area. We operate a full fleet of vehicles 24 hours a day, 7 days a week. (206) 412-9353">
<meta name="author" content="awseattle.com">
<meta name="keywords" content="seattle limo, limousine service, airport limo, cruise transfers, limo service" />
<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">
<title>AW Seattle</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<script src="js/DateTimePicker.js" type="text/javascript"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
<!-- Respond.js proxy on external server -->
<link href="http://externalcdn.com/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<span class="light">AW</span> Seattle
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
</li>
<li>
<a class="page-scroll" href="#fleet">Fleet</a>
</li>
<li>
<a class="page-scroll" href="#services">Services</a>
</li>
<li>
<a class="page-scroll" href="#rates">Rates</a>
</li>
<li>
<a class="page-scroll" href="#reservations">Reservations</a>
</li>
<li>
<a class="page-scroll" href="#testimonials">Testimonials</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact Us</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<br><br><br><br>
</div>
<div class="col-md-8">
<!---- Carosel --->
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img width='500' height='250' src="img/towncar.jpg" alt="AW Seattle Town Car">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img width='500' height='250' src="img/seattle.jpg" alt="AW Seattle">
<div class="carousel-caption">
</div>
</div>
<div class="item">
<img width='500' height='250' src="img/chauffeur.jpg" alt="chauffeur">
<div class="carousel-caption">
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!---- End Carosel --->
<br>
<div class="panel panel-default">
<div class="panel-body">
<font color='gray'> We take pride in making every trip a memorable experience. We have been rated one of the best towncar and limousine companies in the Greater Puget Sound area. We have been based in the Seattle Metropolitan area since 2000 and have built our business one customer at a time.
<Br><br>
Our service and prices set us apart from other companies, which makes our company highly competitive. Our experienced drivers are knowledgeable about city streets and locations statewide, are courteous, personable, and confident. Our town cars are meticulously clean and well-maintained. You can relax in luxury as you are safely taken to your desired destination.</font>
</div>
</div>
</div>
<div class="col-md-4">
<br>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Account Log In</h3>
</div>
<div class="panel-body">
<form method="post" action="index.php">
<div class="input-group">
<input name="user" type="text" class="form-control" placeholder="User Name">
</div><Br>
<div class="input-group">
<input name="pass" type="text" class="form-control" placeholder="Password">
</div>
<Br>
<input type="submit" name="login" value="Log in">
</form>
</div>
</div>
<br>
<div class="panel panel-default">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Proud Transporter of</h3>
</div>
<div class="panel-body">
<img src="img/microsoft.png" alt="microsoft" style="width:150px;height:40px"><Br>
<img src="img/amazon.jpg" alt="amazon" style="width:150px;height:40px"><Br>
<img src="img/boeing.jpg" alt="boeing" style="width:150px;height:40px"><Br>
<img src="img/passportunlimited.jpg" alt="passport unlimited" style="width:150px;height:40px"><Br>
<img src="img/facebook.png" alt="facebook" style="width:150px;height:40px"><Br>
<img src="img/eddiebauer.jpg" alt="eddie bauer" style="width:150px;height:40px">
</div>
</div>
<div class="panel-body">
<a href='http://www.heathmanhotel.com/'>Hotel Reservations</a><br>
<a href='http://www.weather.com/weather/today/Seattle+WA+USWA0395?from=search_city'>Weather</a><br>
<a href='http://www.citysearch.com/guide/seattle-wa-metro'>Around Seattle</a><br>
</div>
</div>
</div>
<div class="col-md-8 col-md-offset-2">
<br><br><br><br>
</div>
</div>
</div>
</div>
</div>
</header>
<section id="fleet" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>OUR FLEET</h2>
<div class="row">
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_TownCar.jpg" width="450" height="150" class="img-responsive" alt="Town Car">
Luxury Signature and L model Town Cars up to 4 passengers
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_WhiteLimo.jpg" width="450" height="150" class="img-responsive" alt="White Limo">
Seats 8-10 passengers, Tinted windows, Privacy divider
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_Suv.jpg" width="450" height="150" class="img-responsive" alt="SUV">
Seats up to 7 passengers, Climate controlled, Ample luggage room
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_Van.jpg" width="450" height="150" class="img-responsive" alt="Van">
Seats up to 14 passengers, Ample leg room, Privacy dividers
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_SuvLimo.jpg" width="450" height="150" class="img-responsive" alt="SUV Limo">
Seats up to 14 people, Rear luggage space, Sound system
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_mkt.jpg" width="450" height="150" class="img-responsive" alt="MKT">
Seats 7 comfortably with lots of leg room and style in a Lincon MKT.
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_partybus.jpg" width="450" height="150" class="img-responsive" alt="Party Bus">
<br>Seats up to 16 people
</a>
</div>
<div class="col-md-6">
<a class="thumbnail">
<img src="img/Fleet_Bus.jpg" width="450" height="150" class="img-responsive" alt="Bus">
Luxury Buses, Seats 39-54 people, Ample luggage room, TV/DVD
</a>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="col-lg-8 col-lg-offset-2">
<h2>Services</h2>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">WEDDINGS, PROMS AND SPECIAL OCCASIONS</h3>
</div>
<div class="panel-body">
<div class="col-md-4">
<img src="img/wedding.jpg" alt="wedding" height="100%" width="100%">
</div>
<div class="col-md-8">
<font size="2" color="gray">On your special day everything must be perfect! Planning for a special occasion is very stressful, so let us take some of your stress away. Arrive and leave in style in one of our beautiful limousines. We guarantee that you will make it to all of your planned destinations on time and worry free. Let us help you make your special day the one to remember for years to come.</font>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">CITY TOURS</h3>
</div>
<div class="panel-body">
<div class="col-md-4">
<img src="img/city.jpg" alt="city" height="100%" width="100%">
</div>
<div class="col-md-8">
<font size="2" color="gray">Whether you are new to the Seattle area or have lived here your entire life and need to be reacquainted with our fair city, allow AW Seattle Towncar Service show you the splendor of the Pacific Northwest. Our drivers are well familiar with the area and will be able to provide a memorable experience for you and your family.</font>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">CORPORATE</h3>
</div>
<div class="panel-body">
<div class="col-md-4">
<img src="img/corprate.jpg" alt="corprate" height="100%" width="100%">
</div>
<div class="col-md-8">
<font size="2" color="gray">Take the worry out of your busy work day! Allow reliable and dependable drivers of AW Seattle Towncar Service take you to and from your business meetings in style and luxury. You will enjoy a smooth relaxing ride and arrive at your business meeting in a timely matter.</font>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">GROUND TRANSPORTATION SERVICE</h3>
</div>
<div class="panel-body">
<div class="col-md-4">
<img src="img/ground.jpg" alt="ground" height="100%" width="100%">
</div>
<div class="col-md-8">
<font size="2" color="gray">We began our business with ground transportation service and to this day continue to offer luxury and comfortable rides to and from the SeaTac Airport. Let go of all of your worries about traffic on the roads, rental cars or finding reliable parking for your vehicle. Allow our drivers to take you to the airport or home in style and on time.</font>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Service Agreement</h3>
</div>
<div class="panel-body" align="left">
<div class="col-md-12">
<font size="2" color="gray">
<ul>
<li>All round-trip reservations to be booked with return itinerary at the time of the initial booking </li>
<li>Reservations should include cell phone contact information ONLY; Home and office telephone numbers are irrelevant for coordinating pickups </li>
<li>When exiting baggage claim client to call dispatch # 206 412-9353 to inform from which exit door they can be met </li>
<li>Car seats for children are not provided but can be accommodated for drop-off at Sea-Tac and return will have the seats available for return to home at "one time charge" of $10.00 per seat </li>
<li>Trips between Midnight and 4:00 AM will result in a $10.00 surcharge </li>
<li>Stops en-route will result in an additional $10.00 service fee </li>
<li>Credit card information is kept on file ONLY if requested by the customer, otherwise client needs to present the card for payment to the driver each time </li>
<li>$10 charge to have a driver meet inside with sign at baggage claim </li>
<li>Reservations must be cancelled within 2 hours of pickup to avoid penalties </li>
<li>No-show reservations will result in full charge for the trip </li>
<li>Smoking is NOT permitted </li>
<li>Drinking alcohol is permitted; driver discretionary limits </li>
</ul>
</font>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="rates" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Rates</h2>
<br><br>
<table width='100%' align='center'>
<tr>
<td align='right'><font size='5'>Calculate your rate:</font></td>
<td width="5%"></td>
<td align='left'><div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown">
Event Type
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
<li role="presentation"><a role="menuitem" tabindex="-1" onclick='$("#toFromModal").modal({keyboard: false})'>Transportation to or from Sea Tac Airport</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" onclick='$("#cityTourModal").modal({keyboard: false})'>City Tour</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" onclick='$("#specialEventsModal").modal({keyboard: false})'>Special Occasion</a></li>
</ul>
</div></td>
</table>
<div class="modal fade" id="cityTourModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel"><font color='black'>City Tours</font></h4>
</div>
<div class="modal-body"><font color='gray'>
Your Rate is estimated at: $65 / hour for town cars<br><br>
Rates vary based on events, vehicles, and people. Rates are subject to change.
</font></div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<div class="modal fade" id="specialEventsModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel"><font color='black'>Special Events</font></h4>
</div>
<div class="modal-body">
<font color='gray'>
Your Rate is estimated at: $65 / hour for town cars<br><br>
Rates vary based on events, vehicles, and people. Rates are subject to change.
</font>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<div class="modal fade" id="toFromModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel"><font color='black'>To or From Sea Tac Airport</font></h4>
</div>
<div class="modal-body">
<select id='zip' name='zip' onchange="document.getElementById('ratediv').firstChild.nodeValue = this.options[this.selectedIndex].value">
<option value=''>Select A Pick Up / Drop Off Area</option>
<?php
// Create connection
$conn = new mysqli($dbhost, $dbuser, $dbpass, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT * FROM ziprates GROUP BY city";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<option value='$".$row['ratelow']." - $". $row['ratehigh']."'>". $row['city']."</option>";
}
} else {
echo "0 results";
}
$conn->close();
?>
</select>
<br><br>
<font color='gray'>
Your Rate is estimated at:<br>
<div id='ratediv'>
</div><br><br>
Rates are for one way travel. Round trip is double.<br>
Lowest price is based on closest location to Sea Tac Airport<br>
Rates vary based on events, vehicles, and people. Rates are subject to change.
</font>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<br><br><br><br><br><br><br><br>There is $65.00 per hour charge for city tours and any other occasion. <br>Downtown Seattle to/from Sea-Tac Airport flat rate of $55.00. <br><br><br><br>All rates may be subject to change.
</div>
</div>
</section>
<section id="reservations" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Reservations</h2>
<br>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Select a event type to make a reservation:</h3>
</div>
<div class="panel-body" align="center">
<a class="btn btn-default btn-lg" style='width: 310px;' onclick='$("#tofromModal").modal({keyboard: false})'><span class="network-name">TO / From Sea TAc Airport</span></a>
<br>
Custom Route</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="modal fade" id="tofromModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" align="center">
<div class="modal-body">
To Sea Tac Airport</span><br>
From Sea Tac Airport</span><br>
Round Trip (Travel To Seattle)</span><br>
Round Trip (Travel From Seattle)</span><br>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<section id="testimonials" class="container content-section text-center">
<div class="row">
<h2>Testimonials</h2>
<div class="table-responsive">
<table width='200%'>
<tr>
<?php
// Create connection
$conn = new mysqli($dbhost, $dbuser, $dbpass, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT * FROM testimonials";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<td valign='top'>
<blockquote>
<p class='clients-words'>".$row['testimonial']."</p>
<span class='clients-name text-primary'>— ".$row['name']."</span>
</blockquote>
</td>";
}
} else {
echo "0 results";
}
$conn->close();
?>
</tr>
</table>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Contact Us</h2>
<p>Call Us: (206) 412-9353 </p>
<p>Email Us: info#awseattle.com
</p>
<ul class="list-inline banner-social-buttons">
<li>
<i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span>
</li>
<li>
<i class="fa fa-facebook fa-fw"></i> <span class="network-name">Facebook</span>
</li>
<li>
<i class="fa fa-google-plus fa-fw"></i> <span class="network-name">Google+</span>
</li>
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container text-center">
<p>Copyright © AW Seattle 2014</p>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCRngKslUGJTlibkQ3FkfTxj3Xss1UlZDA&sensor=false"></script>
<!-- Custom Theme JavaScript -->
<script src="js/grayscale.js"></script>
</body>
</html>
Any advice is appreciated. Not sure what to do ) :

How to present footer content on certain pages using an if statement

I am new to php and I want to only show specific footer content on 2 pages.
I know I would use an if statement, but I don't know if there is way in php to know what page is being displayed.
Here is the footer.php
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* #package WordPress
* #subpackage Twenty_Eleven
* #since Twenty Eleven 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" role="contentinfo">
<?php
/* A sidebar in the footer? Yep. You can can customize
* your footer with three columns of widgets.
*/
get_sidebar( 'footer' );
?>
<div class="boli-better">
<h1 class="description-title">WHY IS BOLI BETTER?</h1>
<div class="feature feature-item-248"><img class="main" src="http://www.btylus.com/wp-content/uploads/uclaproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">PERFECTLY WEIGHTED</h2>
</div>
<div class="feature_description_content">
Touch screens have simplified technology, but there has yet to be a way to capture the precision of a calligrapher or the stroke of an artist. Not only should it meet your needs, but a stylus should have style.
</div>
</div>
</div>
<div class="feature feature-item-252"><img class="main" src="http://www.bylus.com/wp-content/uploads/bolitip.png" alt="" width="640" height="301" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">PEN-LIKE PRECISION</h2>
</div>
<div class="feature_description_content">
Your stylus should be as sharp as your ideas. The thin and clear disc gives you the accuracy you want in a digital pen.
</div>
</div>
</div>
<div class="feature feature-item-254">
<img class="main" src="http://www.bylus.com/wp-content/uploads/blueproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">BALL POINT</h2>
</div>
<div class="feature_description_content">
Hold your stylus at the angle you’re most comfortable with. Jot gives you the freedom to write or sketch like you’re used to.
</div>
</div>
</div>
<div class="feature feature-item-256">
<img class="main" src="http://www.btylus.com/wp-content/uploads/greenproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">HEAVY METAL</h2>
</div>
<div class="feature_description_content">
Once Jot is in your grip, the quality is unmistakable. The durable aluminum and steel gives Jot superior conductivity and craftsmanship comparable to any luxury pen.
</div>
</div>
</div>
</div>
<div id="site-generator">
<strong id="footertext">Copyright Boli Stylus 2011</strong>
Contact Us
Terms
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
Ok, so this is what I came up with, but when I add this code to the footer.php, the entire footer doesn't appear on the site.
I'm sure I just made an elementary mistake so thanks for the help in advance!
<?php
$page = 'shop';
if (is_page($page)) { ?>
<div class="boli-better">
<h1 class="description-title">WHY IS BOLI BETTER?</h1>
<div class="feature feature-item-248"><img class="main" src="http://www.bylus.com/wp-content/uploads/uclaproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">PERFECTLY WEIGHTED</h2>
</div>
<div class="feature_description_content">
Touch screens have simplified technology, but there has yet to be a way to capture the precision of a calligrapher or the stroke of an artist. Not only should it meet your needs, but a stylus should have style.
</div>
</div>
</div>
<div class="feature feature-item-252"><img class="main" src="http://www.bylus.com/wp-content/uploads/bolitip.png" alt="" width="640" height="301" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">PEN-LIKE PRECISION</h2>
</div>
<div class="feature_description_content">
Your stylus should be as sharp as your ideas. The thin and clear disc gives you the accuracy you want in a digital pen.
</div>
</div>
</div>
<div class="feature feature-item-254">
<img class="main" src="http://www.btylus.com/wp-content/uploads/blueproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">BALL POINT</h2>
</div>
<div class="feature_description_content">
Hold your stylus at the angle you’re most comfortable with. Jot gives you the freedom to write or sketch like you’re used to.
</div>
</div>
</div>
<div class="feature feature-item-256">
<img class="main" src="http://www.bylus.com/wp-content/uploads/greenproduct.png" alt="" />
<div class="feature_description">
<div class="feature_description_header">
<h2 class="descript-heading">HEAVY METAL</h2>
</div>
<div class="feature_description_content">
Once Jot is in your grip, the quality is unmistakable. The durable aluminum and steel gives Jot superior conductivity and craftsmanship comparable to any luxury pen.
</div>
</div>
</div>
</div>;
<?php
}
?>
Have a look at PHP's server variables. You are probably looking for $_SERVER['REQUEST_URI'].
if ($_SERVER['REQUEST_URI'] == "/index.php") {
echo "My stuff to show on /index.php";
}
Check out the WP Codex. I thing is_page() is what you are looking for: http://codex.wordpress.org/Function_Reference/is_page
You can either set a special variable on pages where you would like to check it (and use it in an if statement for the footer), or use the answer by #Christofer Eliasson, which uses the server's REQUEST_URI variable
what you want is:
<?php
if (is_page(array('page1','page2'))) {
<!-- Fotter content displayed here -->
}
?>

Categories