developpersoft
New Coder
hi guys, I want to link it to payment gateway using php But I don't know where to start could somebody to fix this.? 
Thank you

Thank you
<div class="container p-0">
<div class="card px-4">
<p class="h8 py-3">Payment Details</p>
<div class="row gx-3">
<div class="col-12">
<div class="d-flex flex-column">
<p class="text mb-1">Person Name</p>
<input class="form-control mb-3" type="text" placeholder="Name" value="Barry Allen">
</div>
</div>
<div class="col-12">
<div class="d-flex flex-column">
<p class="text mb-1">Card Number</p>
<input class="form-control mb-3" type="text" placeholder="1234 5678 435678">
</div>
</div>
<div class="col-6">
<div class="d-flex flex-column">
<p class="text mb-1">Expiry</p>
<input class="form-control mb-3" type="text" placeholder="MM/YYYY">
</div>
</div>
<div class="col-6">
<div class="d-flex flex-column">
<p class="text mb-1">CVV/CVC</p>
<input class="form-control mb-3 pt-2 " type="password" placeholder="***">
</div>
</div>
<div class="col-12">
<div class="btn btn-primary mb-3">
<span class="ps-3">Pay $243</span>
<span class="fas fa-arrow-right"></span>
</div>
</div>
</div>
</div>
</div>
if I use API/SDK is its Possible to transfer payment from website to bank account ? no need to transfer it to paypal then from paypal to bank account.paypal used to and likely still does provide a GET API, where you can get them to click a paypal link with your referral code and it will process your payment then redirect them back to your page, no coding necessary other than HTML <a> tag link. if you want to design your own payment page and not redirect to paypal website, you can use API/sdk for javascript or PHP, probably python these days as well