Hi!
I installed Apache,mysql,mod_php4 from Suse 8.2 Pro installation discs.
I have the following files:
****text.html***
<html>
<head></head>
<body>
<form method=get action="text.php">
Who is your favourite author?
<input name="Author" type="text">
<br>
<br>
<input type=submit>
</form>
</body>
</html>
****text.html****
****text.php****
<htmL>
<head></Head>
<body>
Your favourite author is:
<?php
echo $Author;
?>
</body>
</html>
*****text.php****
I requested process of this file using I wrote my favorite's author then I press enter, I got the following:
Inside the address bar:
Inside the browser:
Your favourite author is:
I ran phpinfo(); it is working
I create:
$text=text;
echo $text;
inside text.php file it works.
Where is the problem? I am using this from a NFS'ed directory, I chowm 0777 it, I was using root accout, I ran it from w3m from the server.
Nothing!!!
Thanks
Alex
I installed Apache,mysql,mod_php4 from Suse 8.2 Pro installation discs.
I have the following files:
****text.html***
<html>
<head></head>
<body>
<form method=get action="text.php">
Who is your favourite author?
<input name="Author" type="text">
<br>
<br>
<input type=submit>
</form>
</body>
</html>
****text.html****
****text.php****
<htmL>
<head></Head>
<body>
Your favourite author is:
<?php
echo $Author;
?>
</body>
</html>
*****text.php****
I requested process of this file using I wrote my favorite's author then I press enter, I got the following:
Inside the address bar:
Inside the browser:
Your favourite author is:
I ran phpinfo(); it is working
I create:
$text=text;
echo $text;
inside text.php file it works.
Where is the problem? I am using this from a NFS'ed directory, I chowm 0777 it, I was using root accout, I ran it from w3m from the server.
Nothing!!!
Thanks
Alex