+ 1
Saving on php
I need a code that will save info from forms and send it to another html file after click on button "save"
7 Respuestas
0
<form method="post" action="another.php">
0
and call it with $_POST['name']
0
thanks, can I change .php to .html?
0
nope
0
Do I have a way to transform it into html code?
0
yap
just write
<?php
echo ' <html code>';
0
Thanks a lot!