quindi tu dici questo se non ho capito male perchè è sempre vuoto totale)
script1.php
<?php
session_start();
$n_utenti=100; //stringa di prova
$_SESSION['testo']=$n_utenti;
?>
script2.php
<?php
session_start();
$utenti= $_SESSION['testo'];
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<style type="text/css"></style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000">
<textarea readonly name="test"><?php echo $utenti; ?></textarea></p>
</body>
</html>