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>
|
||||
</head>
|
||||
<body>
|
||||
<form action="index.php" method="POST">
|
||||
<input type="text" placeholder="Name" name="name">
|
||||
<input type="email" placeholder="E-mail" name="electronic-mail">
|
||||
<textarea placeholder="Message" name=""></textarea>
|
||||
<input type="submit" placeholder="Enviar">
|
||||
<form action="backEnd.php" method="POST">
|
||||
<input type="text" placeholder="Name" name="name" required>
|
||||
<input type="email" placeholder="E-mail" name="electronic-mail" required>
|
||||
<textarea placeholder="Message" name="message" required minlength="35"></textarea>
|
||||
<input type="submit" placeholder="Enviar" name="submit" required>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user