http://php.flashwebhost.com/vineesh/...n_making_1.php

Code:
<?php

$ticket = 'no';

if ($ticket == 'yes') {

echo 'We will get ticket' ;

}

if ($ticket == 'no') {

echo 'We will not get ticket' ;

}
------------------------
http://php.flashwebhost.com/vineesh/...n_making_2.php
Code:
<?php

$mark = 99;

if ($mark == 99) {

echo 'You have got 99 marks, you win!';

}

if ($mark == 19) {

echo 'Sorry, You are failed';

}