Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

stripe

  1. T

    JavaScript Introduction to the MERN Stack and Stripe Integration for Beginners: Part 1

    View: https://www.youtube.com/watch?v=XaibDAWnG0E
  2. dorianu

    Need advice with getting a paid product from an api

    I'm working on a wordpress site that has a bunch of forms. I need to send the submitted form data to an api, in return I get a product. The products are charged by credits that I have on a account. Before I request the product from the api, I have to charge the user. The checkout page is done on...
  3. Alien10

    PHP HTML form redirecting when it is not meant to

    I know how to use stripe now, but when I am integrating it into my website, the form takes me to index.php. Here is my code for my checkout.php: <?php session_start(); if (!isset($_SESSION['letin'])) { header('Location: index.php'); exit(); } else { if...
  4. Alien10

    PHP Received unknown parameter: name error in stripe php

    I am getting this error with stripe in PHP: Fatal error: Uncaught (Status 400) (Request req_FcC4lDxNQOV5mV) Received unknown parameter: name thrown in C:\xampp\htdocs\subscription-use-cases\medium\vendor\stripe\stripe-php\lib\Exception\ApiErrorException.php on line 38 Here is my HTML code...
  5. Alien10

    PHP error communicating with Stripe. (Network error [errno 55]: Failed sending HTTP POST request) error with stripe php

    I am getting an error in php when using stripe, Here is the error: Fatal error: Uncaught Unexpected error communicating with Stripe. If this problem persists, let us know at [email protected]. (Network error [errno 55]: Failed sending HTTP POST request) thrown in...
Back
Top Bottom