What version of PHP are you using?
Ian Bambury wrote:
Thanks for that, unfortunately it hasn't fixed the problem, true
though it may be.
files now read:
<html>
<head><title></title></head>
<body> name: <form action="b.php" method="get">
<input type="text" name="xname"><br>
<input type="submit" value="send">
</form>
</body>
</html>
------------------
<html>
<head><title></title></head>
<body>
name:
<?php
echo $_GET['xname'];
$v = "Hello";
?>
<br>
<?php
echo $v;
?>
<br>
</body>
</html>
Querystring = http://127.0.0.1/b.php?xname=fred
...but still no joy. The "Hello" turns up, though.
Thanks,
Ian
.