<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
I'm trying to pass a string to a php program from my openlaszlo
application. I use the "get" method to pass it. The argument name is
"qs". The php program writes out the value as null.<br>
Am I not passing the string "<b>stuff</b>" correctly?<br>
<br>
<b>The php program snipit is:</b><br>
<br>
$qs=$_GET["<b>qs"</b>];<br>
fwrite($errorHandle,"get returned: $qs"); This writes out a null string
for $qs.<br>
<br>
<b>The laszlo script is:</b><br>
<br>
<dataset name="ds" request="false"<br>
src="<a class="moz-txt-link-freetext" href="http://www.../sr.php">http://www.../sr.php</a>?<b>qs=stuff</b>" /><br>
<window x="10" y="1" resizable="true" width="600" height="500" ><br>
<form id="f2" height="200"><br>
<submit name="sr" data="${a}"/> <br>
<statictext fontstyle="bold" ><br>
Enter keyword(s)?<br>
</statictext><br>
<edittext width="175" /> <br>
<button text="Submit" isdefault="true"<br>
onclick="parent.sr.submit()" /> <br>
</form><br>
</body>
</html>