From: | hodges(at)xprt(dot)net |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: passing variables |
Date: | 2003-01-01 04:24:21 |
Message-ID: | 3E11FCF5.19.45CE7D@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
There was another problem with the library I am using,
session_register() no longer works. Here is the fix
This seems to have fixed it (about line 300 in
login.inc.php):
session_start();
if (! isset ($_SESSION['gUser']))
{$gUser = '';}
else {$gUser=$_SESSION['gUser'];}
Now the php_lib_logins_include library seems to work with current
php, postgresql, and redhat 8.
Thanks for all the help and suggestions.
Tom
On 22 Dec 2002 at 8:35, hodges(at)xprt(dot)net wrote:
> I found the answer to this.
>
> Hi <?php echo $_POST["name"]; ?>.
> You are <?php echo $_POST["age"]; ?> years old.
>
> >From the php documentation. These are autoglobals.
>
> There is a $_GET also.
>
> Tom
>
> On 21 Dec 2002 at 2:31, hodges(at)xprt(dot)net wrote:
>
> > I have two files below. Why does the first file not pass
> > values to the second file?
> >
> > Tom
> >
> > First file
> > <HTML><TITLE>Test form</TITLE>
> > <body>Test Form<BR>
> > <form method="POST" action="test_create_acct.php">
> > <input type="text" name="func" value="strtoupper"><p>
> > First Name: <br>
> > <input type="text" name="fname"><p>
> > <input type="submit" name="submit" value="submit">
> > </body></html>
> >
> >
> > file: test_create_acct.php
> >
> > <?php
> > $res = $func($fname);
> > echo "$res";
> > ?>
> >
> > Fatal error: Call to undefined function: () in
> > /var/www/html/php_lib_login_includes/ test_create_acct.php on line 2
> >
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 3: if posting/reading through Usenet, please send an appropriate
> > subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> > message can get through to the mailing list cleanly
> >
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>
From | Date | Subject | |
---|---|---|---|
Next Message | Reshat Sabiq | 2003-01-01 06:16:19 | localhost connects, same code on other host fails |
Previous Message | Cheryl Thompson | 2002-12-31 20:35:46 | Re: Windows ODBC Driver? |