Jump to content

PHP Help!


mamabear

Recommended Posts

I apologize if this is in the wrong section.  First off I am just beginning setting up php scripts on my site.  I have installed a dating script, and just got approved from ccbill.  I know that I need to create a script and have the ccbill point to it via a approval post url, or denial post url. I understand that I need to use variables, but I just do not know where to start. I have never had to create my own script before so I am at a loss as to what or how to do this.  My dating site script does have a ccbill module, but using this module it does not use the ccbill form itself, nor does it pull all of the information that I would like it to. I appreciate any help that is offered.

 

Thank you.

Link to comment
https://forums.phpfreaks.com/topic/165291-php-help/
Share on other sites

It has helped a little bit, I need a script that will pull information from my site into the ccbill itself.  If someone knows how to do this, or would take a look at the script that I have developed to see if I have created it correctly I would greatly appreciate it.

 

It would help if you posted your code then huh?

Link to comment
https://forums.phpfreaks.com/topic/165291-php-help/#findComment-873347
Share on other sites

It has helped a little bit, I need a script that will pull information from my site into the ccbill itself.  If someone knows how to do this, or would take a look at the script that I have developed to see if I have created it correctly I would greatly appreciate it.

 

It would help if you posted your code then huh?

 

I dont know if it needs to be get or post in this script, but as I said before I need it to pull my customers information from my site into the ccbill form itself when they go to signup and pay.

 

<?php

$fname = $_GET[customer_fname];

echo $fname;

$lname = $_GET[customer_lname];

echo $lname;

$address1 = $_GET[address1];

echo $address1;

$email = $_GET;

echo $email;

$city = $_GET[city];

echo $city;

$state = $_GET[state];

echo $state;

$zipcode = $_GET[zipcode];

echo $zipcode;

$country = $_GET[country];

echo $country;

$phone_number = $_GET[phone_number];

echo $phone_number;

$username = $_GET[username];

echo $username;

$password = $_GET[password];

echo $password;

 

Let me know if you need more information, I appreciate any help offered.

Link to comment
https://forums.phpfreaks.com/topic/165291-php-help/#findComment-874339
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.