JImL, Didn’t work, but your ‘more code’ comment led me to investigate a simplification of my longer program to see what I could learn about php. Here’s the result:
— My simple test script: —
[php]<?php
TEST_varformat.html
$quantity:
<?php
$quantity = $_POST['quantity'];
echo 'Quantity = $quantity
';
echo End of TEST_varformat.html ,"
";
?>
?>[/php]
— IE’s screen display of this script’s output after I enter the value ‘1’ … —
$quantity: [ 1 ]
"; ?>
Note: “;?> These 4 characters came from the last 2 lines of the php script. Do they have anything to do with the following error?
— IE’s Error mssg: ‘The webpage cannot be found’ —
The IE url window shows that IE is looking for …
http://www.domain.net/Apr2013_En/TmpTestFiles/<?php echo $_SERVER[‘PHP_SELF’] ?>
Thanks for the useful response,
usit