I have some PHP and a HTML Form, two of the inputs are echoing fine the first input is not, and its something to do with the URL as when I remove the "+" from the fullname, the input then displays. Why is the url doing "+" and how can I fix it so the fullname input works
<div class="form-group">
<input id="fullname" name="fullname "type="text" class="form-control" placeholder="Full Legal Name">
</div>
<div class="form-group">
<input id="email" name="email" type="email" class="form-control" placeholder="Email Address">
</div>
<div class="form-group">
<input id="ContactNumber" name="ContactNumber" type="text" class="form-control" placeholder="Contact Number">
</div>
session_start();
if(!isset($_SESSION["staff"])){
header("Location: default.php");
exit(); }
$name = $_GET['fullname'];
$email = $_GET['email'];
$ContactNumber = $_GET['ContactNumber'];
echo $name. "</br>" . $email. "</br>" . $ContactNumber.