Posts
Showing posts from June 21, 2015
Assignment 1 Question 1
- Get link
- X
- Other Apps
<?php /* * @author Rajendra Kumar Yadav * @date 23:55:40 26-Jun-2015 IST * ATSS First PHP Program * Filename a1q1.php * Assignment 1 Question 1 for Semester III. */ ?> <html lang="en"> <head> <title> Assignment 1, Question 1! </title> </head> <body bgcolor='#000000'> <center> <h3> Welcome to Assignment 1 and Question 1!</h3> <?php if($_SERVER['REQUEST_METHOD']=='POST') { $str=$_POST['str']; //Global variable $ch=$_POST['ch']; //Global variable function COU($str) //Function to check the vowel occurance ...