Must watch English Travel Movies List

Here am exploring Must watch English Travel Movies List,following the list of movies you should watch before you die.

1) Eat Pray Love

Eat Pray Love is the one of the best travel movie, Elizabeth Gilbert’s embarks on a journey Through Italy , India and Bali in Indonesia an attempt to rediscover her true self.This movie is based on American author Elizabeth Gilbert book Eat Pray Love , The book remained on The New York Times Best Seller list for 187 weeks.It took three country Italy , India and Indonesia accordingly Eat ,Pray and Love.In Italy she tried and enjoyed all the food,In India she is trying to find out peach of mind through meditation,and lastly in Bali (Indonesia) she is enjoying the love.

Must watch English Movies List

2) Into the Wild

Into the Wild is a biographical adventure drama film written by Sean Penn.The script written based on the “Into the Wild” written by Jon Krakauer.McCandless hero in the movie travels into the wilderness and sets up a campsite in an abandoned city bus. At first, McCandless is content with the isolation, the beauty of nature around him, and the thrill of living off the land.

Into the Wild

3) The Beach

The Beach is a adventure film by Danny Boyle and based on Alex Garlan Novel “The Beach”.Leonardo DiCaprio play Lead role in this movie ,a young seeking adventure in Bangkok, he came to know about uninhabited and restricted island in the Gulf of Thailand with a beautiful hidden beach and lagoon.
The Beach

4) Before Sunrise

Before Sunrise is a romantic film directed by Richard Linklater, it explore the romatic love story of Jesse meets and Céline They meet on a train from Budapest.They both roam around in Vienna.After visiting a few landmarks in Vienna, they share a kiss at the top of the Wiener Riesenrad at sunset and start to feel a romantic connection.
Before Sunrise

Codeigniter No input file specified error for inside pages

If you are getting no input file specified error for inside pages in Codeigniter, this is the issue with htaccess redirection you have to replace your root htacces file with below code. if you look on the code you can see a question mark after the index.php (index.php?/$1) .This .htacces making the correct URL redirection in Codeigniter


RewriteEngine On
# Disable directory browsing 
#Options -Indexes
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]  

how to view amazon prime videos in android smart TV

Here is the steps to view amazon prime videos in android smart TV

1) Install amazon prime App in your Android smart phone

install amazon prime videos in android smart TV

2) Install Chromecast app in your Android smart phone ( http://play.google.com/store/apps/details?id=de.twokit.castbrowser&hl=en_IN)

install and view amazon prime videos in android smart TV

3) Connect both your android smart TV and android smart phone to the same WiFi

4) Open any video program in amazon prime videos you wish to watch in your android smart TV

4) click on Chromecast icon that appearing in amazon prime videos to watch the same prime videos in android smart TV
Chromecast install and view amazon prime videos in android smart TV

See it is connecting

WhatsApp Image 2020-04-27 at 3.43.02 PM (1)

WhatsApp Image 2020-04-27 at 3.47.45 PM

PHP curl request code with Content Type application/json in header

Here is the PHP curl request code with Content Type application/json in header

$url = '' ; 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string);
 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json' )); 
          
$server_output = curl_exec($ch);
if(curl_exec($ch) === false)
{
    echo 'Curl error: ' . curl_error($ch);
}
else
{
    //echo 'Operation completed without any errors';
}