[thelist] Perl Form to PHP Form

Rob Wilson robw at enigma-interactive.co.uk
Fri Jul 12 07:12:08 CDT 2002


It means that you're trying to output an array as a string ... what you
should be doing is something like :

---

<?php
echo "Name A = " . $_GET['namea'] . "<br>";
echo "Name B = " . $_GET['nameb'] . "<br>";
?>

---

Which will check if your varaibles contain the values you expect.

Rob




More information about the thelist mailing list