Pages

Lower Case Using PHP (Example)



Example :

 In HTML File 

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>Untitled Document</title>

</head>

<body>

<form action="cases.php" method="post">

Type any word<input type="text" name="word"/>

<input name="submit" type="submit" value="lowercase"/>

</form>

</body>

</html>


In Php File:

<?php

$word=$_POST['word'];

 echo strtolower($word);

?>



Example Download....!

No comments:

Flag Counter
| Copyright © 2013 Remote Tutor