0
I made exactly the PHP code of this video click here to have my form send the data to my e-mail.
However, now that I have the entire code, I don’t know how to pass it to my html.
Why, like, the boy example he made the form, he put all that HTML structural body in a PHP file.
And the form of my site, is along with the entire site in the HTML file. How would I make the form work?
<?php
$msg=0;
@$msg= $_REQUEST['msg'];
?>
This above code, I will have to put above the initial html code, and if the file is html, it will not work.
<!DOCTYPE html>
<html>
<head> etc...
And there’s another external php tbm file.
you will have to play inside the desired file on the site and transfer the extension of this file to . php, but you will have no problem doing so
– Victor