Imprimir texto em php
{
$_SESSION['views']=$_SESSION['views']+1;
}
else
{
$_SESSION['views']=1; echo "Views=". $_SESSION['views'];
}
?>
$n_palavras_total = 0;
22.
23. // contar palavras por linha
24. for($l=0;$l<count($linhas);$l++)
25. {
26. $palavras = explode(" ",$linhas[$l]);
27. $n_palavras_total += count($palavras);
28. }
<html>
02. <body>
03. <h1> CONTA PALAVRAS PHP </h1>
04. <table border=1>
05. <tr>
06. <td>Texto Digitado:</td>
07. <td><?php echo $texto; ?></td>
08. </tr>
09. <tr>
10. <td>Numero de Palavras:</td>
11. <td><?php echo $n_palavras_total; ?></td>
12. </tr>
13. </table>
14. </body>
15.</html
<form action="" method="POST">
<input type="text" name="valor[]" value="a"><input type="text" name="nome[]" value="b">
<br>
<input type="text" name="valor[]" value="c"><input type="text" name="nome[]" value="d">
<br>
<input type="text" name="valor[]" value="e"><input type="text" name="nome[]" value="f">
<input type="submit" name="envia">
</form>
<?php if($_POST['envia']) { extract($_POST); foreach(array($valor) as $info1) foreach(array($nome) as $info2) for($i = 0; $i < count($info1); $i++) { echo $info1[$i]." e ".$info2[$i]."<br>";
}
}
?>
<?php
$cesta = array($_Post[´numero´]); array_push($cesta, "melancia", "batata"); print_r($cesta); ?>
-------------------------------------------------
O exemplo acima irá imprimir: Array ( [0] => laranja [1] => morango [2]