mamabear Posted July 9, 2009 Share Posted July 9, 2009 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 More sharing options...
shergold Posted July 9, 2009 Share Posted July 9, 2009 The following website will take you through the basics of php, this should be a start. http://www.w3schools.com/php/ Shergold. Link to comment https://forums.phpfreaks.com/topic/165291-php-help/#findComment-871687 Share on other sites More sharing options...
mamabear Posted July 11, 2009 Author Share Posted July 11, 2009 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. Link to comment https://forums.phpfreaks.com/topic/165291-php-help/#findComment-873339 Share on other sites More sharing options...
trq Posted July 11, 2009 Share Posted July 11, 2009 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 More sharing options...
mamabear Posted July 13, 2009 Author Share Posted July 13, 2009 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.