形式为paypal支付价值不通过

I am using this form to pass values to paypal payment.

<form style="padding: 20px; border: 2px solid #f00; background: #fff;    box-shadow: 10px 10px 20px -5px #000; border-radius: 10px; font-size:15px;" action="https://www.paypal.com/cgi-bin/webscr" method="POST">
<div class="form-row">
    <div class="form-group col-md-12 mx-auto text-center">
        <h3 class="text-uppercase">Please Confirm Your Payment</h3>
    </div>
</div>
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="paypaltestgmail.com">
<input type="hidden" name="quantity" value="1">
<div class="form-row">
    <div class="form-group col-md-4">
        <label for="fullName">Full Name</label>
        <input type="text" class="form-control" id="fullName" value="<?php echo $firstName . ' ' . $lastName; ?>" name="fullName" disabled="disabled">
    </div>
    <div class="form-group col-md-4">
        <label for="email">Email</label>
        <input type="text" class="form-control" id="email" value="<?php echo $email; ?>" name="email" disabled="disabled">
    </div>
    <div class="form-group col-md-4">
        <label for="age">Age</label>
        <input type="text" class="form-control" id="age" value="<?php echo $age; ?>" name="age" disabled="disabled">
    </div>
</div>
<div class="form-row">
    <div class="form-group col-md-4">
        <label for="sessionType">Session Type</label>
        <input type="text" class="form-control" id="sessionType" value="<?php echo $sessionType; ?>" name="item_name" disabled="disabled">
    </div>
    <div class="form-group col-md-4">
        <label for="sessionDays">Session Days</label>
        <textarea class="form-control" id="sessionDays name="sessionDays" disabled="disabled"><?php echo $sessionDays; ?></textarea>
    </div>
    <div class="form-group col-md-4">
        <label for="sessionTime">Session Time</label>
        <textarea class="form-control" id="sessionTime" name="sessionTime" disabled="disabled"><?php echo implode(', ', $_POST['sessionTime']); ?></textarea>
    </div>
</div>
<div class="form-row">
    <div class="form-group col-md-4">
        <label for="totalCost">Total Cost</label>
        <input type="text" class="form-control" id="totalCost" value="<?php echo $totalCost; ?>" name="totalCost" disabled="disabled">
    </div>
    <div class="form-group col-md-4">
        <label for="totalTax">Tax Amount</label>
        <input type="text" class="form-control" id="totalTax" value="<?php echo $totalTax; ?>" name="totalTax" disabled="disabled">
    </div>
    <div class="form-group col-md-4">
        <label for="grandTotal">Grand Total</label>
        <input type="text" class="form-control" id="grandTotal" value="<?php echo $grandTotal; ?>" name="amount" disabled="disabled">
        <input type="hidden" name="no_shipping" value="1">
        <input type="hidden" name="no_note" value="1">
        <input type="hidden" name="currency_code" value="USD">
        <!-- <input type="hidden" name="bn" value="BuyNow"> -->
        <input type="hidden" name="return" value="http://www.example.net/payment-success/">
    </div>
</div>
<button type="submit" class="btn btn-primary btn-lg d-block mx-auto text-uppercase">Confirm & Pay</button>

And I am getting this result:

I am getting this result

I am getting quantity but not getting $sessionType; in description field and $grandTotal; in price per item (total) field. I am doing this first time. What mistake is there in my form? I am not being able to solve the issue.

Use the magic of the readonly attribute:

This attribute indicates that the user cannot modify the value of the control. The value of the attribute is irrelevant. If you need read-write access to the input value, do not add the "readonly" attribute. It is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type (such as button or submit).