mirror of
https://github.com/FranP-code/Frist-actual-form.git
synced 2025-10-12 23:53:02 +00:00
Hecho toda las bases en HTML y PHP
This commit is contained in:
5
backEnd.php
Normal file
5
backEnd.php
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
echo print_r($_POST);
|
||||||
|
|
||||||
|
?>
|
||||||
10
index.html
10
index.html
@@ -7,11 +7,11 @@
|
|||||||
<title>Formulario</title>
|
<title>Formulario</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form action="index.php" method="POST">
|
<form action="backEnd.php" method="POST">
|
||||||
<input type="text" placeholder="Name" name="name">
|
<input type="text" placeholder="Name" name="name" required>
|
||||||
<input type="email" placeholder="E-mail" name="electronic-mail">
|
<input type="email" placeholder="E-mail" name="electronic-mail" required>
|
||||||
<textarea placeholder="Message" name=""></textarea>
|
<textarea placeholder="Message" name="message" required minlength="35"></textarea>
|
||||||
<input type="submit" placeholder="Enviar">
|
<input type="submit" placeholder="Enviar" name="submit" required>
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user