Our phone OTP (Cell Phone) is on this page (https://fleet.com.pk/booking/confirm.php) but I want to move it to a new separate page (lets say number.php), but when I do, at the end, the email does not contain details entered at confirm.php
whats wrong?
I have tried creating number.php with the following code, it sends number to mobile phone for verification but at the end, the email does not contain information entered in confirm.php
<?php
session_start();
if (!isset($_SESSION[‘authenticated’]))
{
header(‘Location:/error.php’);
exit;
}
include(“includes/config.php”);
?>
    <div class="col-lg-10 mx-auto">
     <div class="row"> </div>
    <div class="col-lg-12 ">
        <form method="post" action="confirmCell.php">
          <div class="row">
            <div class="col-lg-12 mx-auto">
                  <div class="form-group">
                      <label for="cell">Mobile Phone</label> 
                      <input type="number" class="form-control" id="cell" name="cellPhone" required="true"> 
                  </div>
          </div>
              <div class="col-lg-6 mx-auto">
                  <button class="btn btn-primary btn-lg btn-block" id="getAll">CONFIRM BOOKING</button>
                <div class="row"> </div>
                                  </div>
          </div>
          </form>