DAY 2 VARIABLES POST 3


http://php.flashwebhost.com/ramesh/study3.php

Code:
<?php

$film = 'Gangster';

echo  'Film: ' . $film; echo '. <br>';

$actor = 'Mammootty';

echo  'Actor: ' . $actor; echo '. <br>';

$actress = 'Nyla Usha';

echo  'Actress: ' . $actress; echo '. <br>';

$director = 'Aashiq Abu';

echo  'Director: ' . $director; echo '. <br><br>'; 

$actress1 = 'Aparna Gopinath';


echo 'The ' . $film . ' is a Malayalam film , '  . $film . ' directed by ' . $director . ', ' . $actor . ' plays the lead role as Akbar Ali Khan'; echo '.';

echo '<br> <br>';

echo 'Along with ' . $actress . ' and ' . $actress1 . ' as the female leads'; echo '.';