12th practical-11
𝕋𝕙𝕚𝕤 ℙ𝕣𝕠𝕘𝕣𝕒𝕞𝕤 𝕒𝕣𝕖 ℂ𝕣𝕖𝕒𝕥𝕖𝕕 𝔹𝕪 𝕐𝕦𝕧𝕣𝕒𝕛 𝕄𝕠𝕥𝕖
![]() |
PHP |
Wow.html
<html>
<head>
<title>Page Title</title>
</head>
<body>
<H1 align="center">Bowels counting</H1>
<form method="post" action="vow.php">
Enter a string
<input type="text" name="t1"><br><br>
<input type="submit" name="submit" value="Count Vowels" >
</form>
</body>
</html>
Vow.php
<?php
if(isset($_POST['submit'])){
$s=strtolower($_POST['t1']);
$v=array('a','e','i','o','u');
$l=strlen($s);
$c=0;
for($i=0;$i<$l;$i++)
{
if(in_array($s[$i],$v))
{
$c++;
}}
echo"Number of vowels:".$c;
}
?>
This program is Created only for the college students
Comments