Non riesco a pasare la variabile $testo tra php e vicerversa.
ecco il codice:
<?php
session_start();
$testo=$_POST["testo"];
?>
<script type="text/javascript">
function tasti(){
if (window.event.keyCode==13){
alert ("salve");
// vorrei poter agire sulla variabile $testo in modo
// da avere $testo=$testo+"quello che serve"
}
}
</script>
<?php
echo "<html>";
echo "<body onkeypress='tasti()'>";
echo "<form name='prova' action='$PHP_SELF' method='post'>";
echo "<textarea cols='80' rows='15' name='testo'>";
echo "</textarea>";
echo"</form>";
echo $testo;
echo "</body>";
echo "</html>";
?>
ecco il codice:
<?php
session_start();
$testo=$_POST["testo"];
?>
<script type="text/javascript">
function tasti(){
if (window.event.keyCode==13){
alert ("salve");
// vorrei poter agire sulla variabile $testo in modo
// da avere $testo=$testo+"quello che serve"
}
}
</script>
<?php
echo "<html>";
echo "<body onkeypress='tasti()'>";
echo "<form name='prova' action='$PHP_SELF' method='post'>";
echo "<textarea cols='80' rows='15' name='testo'>";
echo "</textarea>";
echo"</form>";
echo $testo;
echo "</body>";
echo "</html>";
?>