|
Posted by Rik on 03/04/07 00:05
cpptutor2000@yahoo.com <cpptutor2000@yahoo.com> wrote:
> I am new to PHP and I am having a very odd problem. Could some PHP
> guru please help.
>
> I am passing some variables from one page to the next, and in the
> starting page, I have:
> However, I am unable to echo these values. If I have:
> $recdpoet=3D$_GET['newpoet']
You forgot to close it with ';'
> Any help or suggestions will be greatly appreciated.
While developing, setting display_errors on and error_reporting to all i=
s =
a great help. If you had this on top of your page, you'd have spotted it=
=
almost immediately:
<?php
ini_set('display_errors',true);
error_reporting(E_ALL);
?>
-- =
Rik Wasmus
Navigation:
[Reply to this message]
|