0
How can I lick my php code to html form using action to store and display Tue values...???
I recently trued to get to the basics of php.... I tried to make a form... wrote a separate php code... and as instructed I just wrote the name of my php file in action.... but it displays file not found...
1 Respuesta
+ 8
Are you using the correct path?
For example, if your project folder looks like:
index.html
|
|
|_____ php
|
|____ store.php
|____ signin.php
|____ signup.php
You must specify the path like:
<form action="php/store.php">
<!-- php: folder, store.php: file -->
</form>