Stringa_1.php
<html><head>
<title>Gestione delle stringhe di caratteri</title>
</head>
<body bgcolor=f5f5dc>
<h2><center>Digitare una stringa di caratteri</center></h2>
<form action=stringa_2.php method=POST>
<center>
<input name=frase size=100 maxlength=100><p>
<input type=submit value=spedisci>
<input type=reset value="cancella tutto">
</center>
</form>
</body>
</html>
Stringa_2.php
<html><head>
<title></title>
</head>
<body bgcolor=f5f5dc>
<h2><center>Stringa di caratteri</center></h2>
<?php
//inizializzazione delle variabili
$frase=$_POST['frase'];
//visualizazzione di $frase
echo $frase . "<hr>";
echo "<br>";
//visulaizzazione di $frase con il for
for($i=0;$i<=strlen($frase);$i++){
echo chr(ord(substr($frase,$i,1))+5);
}echo "<hr>";
echo "<p>";
//utilizzo di substr
echo substr($frase,5,10);
echo "<hr>";
echo "<p>";
//utilizzo di strtoupper
echo strtoupper($frase);
echo "<hr>";
echo "<p>";
//utilizzo di strtolower
echo strtolower($frase);
echo "<p>";
?>
</body>
</html>
Nessun commento:
Posta un commento