I have a problem that I can't figure out.
I have the same code on 2 servers, win NT and Linux boxes.
The Linux box works fine but the NT one doesn't seem to be passing the variables to the final page.
I get this
http://138.83.163.36/sda/healthchecks/fastqualcheck.php?npa=555&nxx=555&linenum=5555
but the values never get to the end page.
Any ideas??
This used to work find on the NT server and I don't know what has changed.
Here's the code:
fastqual.html
<html>
<head>
<title>Fastqual check</title>
</head>
<body>
<h1>Fastqual check</h1>
<h2>Enter a phone number</h2>
<h4>This will check the path through weblogic without going through BAAIS<h4>
<form action="fastqualcheck.php" method=get>
<table border=0>
<tr bgcolor=#cccccc>
<td align=center width="51">NPA</td>
<td align=center width="44">NXX</td>
<td align=center width="52">##</td>
</tr>
<tr>
<td align=center><input type="text" name="npa" size=3 maxlength=3></td>
<td align=center><input type="text" name="nxx" size=3 maxlength=3></td>
<td align=center><input type="text" name="linenum" size=4 maxlength=4></td>
</tr>
<tr>
<td colspan=2 align=center><input type=submit value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>
fastqualcheck.php
<html>
<head>
<title>Fastqual Results</title>
</head>
<body>
<?
$site= "http://websiteurl/FLQServlet?<?xml%20version='1.0'?><!DOCTYPE%20ADSLBatchQualification%20SYSTEM%20'AdslBatchRequest.dtd'><ADSLBatchQualification><Header><FileId>0741</FileId><Source>E</Source><SourceId>test</SourceId><DestinationId>%20GTE%20</DestinationId><PreQualXmlVersion>2.1</PreQualXmlVersion></Header><Request><PreQual><Telephone><NPA>$npa</NPA><NXX>$nxx</NXX><LineNumber>$linenum</LineNumber></Telephone></PreQual></Request></ADSLBatchQualification>";
echo "<meta http-equiv=\"refresh\" content=\"2; url=$site\">"
?>
</body>
</html>
Thanks
Keith