I have 2 files runQuery.php and doSQL.php, where the first one is posting data entered
by the user to the second page and displaying it but the data never arrives. Any idea
why this would not work, maybe some configuration issue?? Any help is really
appreciated...
Advertising
<!--
<!-- runQuery.php -->
<DIV align="left">
<FORM name="sql" method=post action="doSQL.php">
<INPUT type="text" name="clSQL" size="50"><BR><BR>
<INPUT type="submit" name="submit" value="Lancer requète">
<INPUT type="reset" name="reset" value="Effacer"><BR>
</FORM>
<I class="normal">i.e. select * from scpsft</I>
</DIV>
<!-- doSQL.php -->
<HTML>
<BODY bgcolor="#efefde">
<H1>Résultat de la requète:</H1>
<?PHP
echo ($clSQL);
?>
</BODY>
</HTML>
-->