Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-29-2012, 12:04 PM
|
#1
|
LQ Newbie
Registered: Apr 2012
Posts: 7
Rep:
|
Problem with PHP
i have installed rhel 6 including ALL the OPTIONAL PACKAGES.
moreover i have made a html file linked to a PHP file in ubuntu, copied it to /var/www/html of rhel 6, and now i want to run it on my RHEL 6, but after pressing submit button in the index.html page the parameter (i.e. the name of as person)passed in html file doesn't appear.
i'm getting the out put as:
"HELLO , PHP IS WORKING!!!"
HTML CODE (file name is index.html):
<html>
<head>
<title>PHP Testing!</title>
</head>
<body>
<br/>
<form action="test.php" method="post" name="form1">
Your Name : <input type="text" name="name"><br/><br/>
<input type="submit" value="SUBMIT">
</form>
</body>
</html>
PHP CODE(file name is test.php):
<html>
<head>
<title>PHP Testing!</title>
</head>
<body>
HELLO <?php echo $_POST['name']; ?> , PHP IS WORKING!!!
</body>
</html>
|
|
|
04-29-2012, 03:38 PM
|
#2
|
LQ Guru
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 11,018
|
Change the line below in test.php:
PHP Code:
HELLO <?php echo $_POST['name']; ?> , PHP IS WORKING!!!
To:
PHP Code:
<?php echo "Hello " . $_POST["name"] ." ". "PHP IS WORKING!!!";?>
|
|
|
04-30-2012, 12:22 AM
|
#3
|
LQ Newbie
Registered: Apr 2012
Posts: 7
Original Poster
Rep:
|
i still see the code of php after pressing submit button.
After clicking on submit it shows a prompt
"Do you want to post from data to URL file:///root/test.php (POST DATA)?"
after hitting yes, it shows a prompt again which says
"What would you like to do with the file 'test.php' (type: application/octet-stream)?
Program ('%' will be replaced by the file name)"
and it asks to open, save, display, cancel
|
|
|
04-30-2012, 02:49 AM
|
#4
|
Senior Member
Registered: Apr 2008
Location: Gurgaon, India
Distribution: Cent OS 6/7
Posts: 4,638
Rep:
|
It seems your php is not configured fine. Or else you are not asking the browser to open the page using http protocol. It is opening it as a file.
|
|
|
04-30-2012, 03:53 AM
|
#5
|
Moderator
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
|
What happens if you just produce a file "test.php" in your
document root that has the following content?
Code:
<?php phpinfo(); ?>
Cheers,
Tink
|
|
|
04-30-2012, 10:28 AM
|
#6
|
LQ Guru
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 11,018
|
Quote:
"Do you want to post from data to URL file:///root/test.php (POST DATA)?"
|
Are you opening it in your file manager? instead of a browser with "http://localhost/index.html"?
|
|
|
All times are GMT -5. The time now is 02:10 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|