Tuesday, May 21, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 27133  / 1 Year ago, sat, january 21, 2023, 9:50:12

I have created a php script and saved it as script.php, located in the /var/www directory. I also have index.html file which has a form which requires the user to enter a value and submit with the code



<html><body><form action="script.php" method="post">
name<input type="text name="fname"">
<input type="submit">
</form>
</body></html>


for testing purposes, i have set my script.php file to be like



<?php
echo "Could not read name";
?>


When i enter the url on the browser, i get the form and on clicking submit, it responds by saying the url http://localhost/script.php was not found. i would like to know the reason why this is so. The question extends to why i can run the php script on its own when i move it from /var/www to home folder and run it as php -f script.php yet when i paste the url http://localhost/script.php , it reports that the url has not been found


More From » apache2

 Answers
1

Hi this what I have done and I have got success with your Idea.



here this is what I have done ,



script.php



<html>
<body>
<?php
echo " welcome "

?>
</body>
</html>


clickhere.html



<html><body><form action="script.php" method="post">
name<input type="text name="fname"">
<input type="submit">
</form>
</body></html>


I have placed that code with sudo gedit and written that code and saved at the location of /var/www/.



Then I have opened my browser ,and typed in my browser as 127.0.0.1/clickhere.html



then I have got it enter image description here



and then I have clicked at that button enter image description here


[#29646] Sunday, January 22, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
azaaburge

Total Points: 266
Total Questions: 85
Total Answers: 109

Location: Djibouti
Member since Sat, Oct 29, 2022
2 Years ago
azaaburge questions
Thu, Jun 2, 22, 23:28, 2 Years ago
Sun, Oct 17, 21, 05:20, 3 Years ago
Fri, Jun 25, 21, 16:22, 3 Years ago
;