Re: passing variables

From: hodges(at)xprt(dot)net
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: passing variables
Date: 2002-12-21 10:31:22
Message-ID: 3E03D27A.32303.8B05C3@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

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

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Josh Berkus 2002-12-21 19:22:18 HTML Mail, was: Table referenced by OID in a view?
Previous Message Michael Weaver 2002-12-21 05:23:43 Re: Table referenced by OID in a view?