+ 6
Sign up form
Let's say I make a sign up form with html and CSS and I want to get the details the user inputs in the fields I provided sent to me when the they hit sign up how do I go about it ?
6 Réponses
+ 4
Cbr✔ whoa thanks alot just made it a whole lot easier
+ 3
😎Cybrarian😎 I m new to web design I just made a website with a sign up page how do I go about the server ?
+ 3
Timmy junior Okirika
you'll most likely be doing that using PHP.
For this to work, make sure
*Your </form> method is set to 'GET'
*You have <input/> tags with name attributes of 'name', 'age' and 'email' respectively
Here's it is
<?php
$name = $GET['name'];
$email = $GET['email'];
$age = $GET['age'];
echo 'your name is '.$name.' and you are '.$age;
?>
There's a little more you need to know, but that's ☝the main thing
+ 2
Timmy junior Okirika let's be clear here, what are you trying to do?
1.Put your website online
OR
2.Get the details of what you typed in your form?
+ 2
D'Lite 2
+ 2
D'Lite thanks man 🖤