Search results

  1. B

    Shopping cart help.

    Ahhh! Thank you kindly! Two last questions, 1. Can I use this method, aswell as the method Callum talked about. So I can create the possibility of each code expiring after used 3 times. 2. Would someone easily be able to create their own combination if they have one expired key?
  2. B

    Shopping cart help.

    I understand about the price musn't be too high or too low but don't know what would be a good price for a game. 5-15 pounds/dollars/euros? I'm not quite sure what a hash value is though, although I think I might have an idea. - A hash value has many different possibilities, when the...
  3. B

    Shopping cart help.

    Yes that method is fine, it's just once someone has payed for it and it's installed, they could just copy the files from say "C:/Program Files/GameDirectory" and upload them to the internet, people could get it for free that easily. :C
  4. B

    Shopping cart help.

    @essellar Woah! Anyway I could make it so they don't have to go online to play? Perhaps by writing something to the registry? @Callum I'm a student with no money. D: What else do I need to say?
  5. B

    Shopping cart help.

    I'm not sure how I would do that though?:confused:
  6. B

    Shopping cart help.

    Yeah, but the IP changes all the time with a few ISP's. They would be able to play the game for a day, turn off their router, turn it back on, they'de get ripped off. :C The mac-address always stays the same though. C: Anyway, how would I make sure that the person got redirected from PayPal on...
  7. B

    Shopping cart help.

    C: Good idea! But I think something else than their IP should be blacklisted as people can spoof them quite easily. Overall Great idea! :D
  8. B

    Shopping cart help.

    @Anna I plan to get my site paid hosting and on a different website. : P @Callum You can connect to a MySQL through a game, It basically sends information to a php code which does the query. : P I'm not sure how someone could reverse engineer a .exe though. If there is a way, is there any way I...
  9. B

    Shopping cart help.

    For selling a game: I am using PayPal shopping cart buttons, and am redirecting (On success) to a page which will ask them for their e-mail to send them a random code which will be added to a MySQL database, once the person opens the game (no help needed) it will go to the MySQL database and...
  10. B

    Problem: Taking information from...

    Thank you very much! :D Your the mannn!
  11. B

    Problem: Taking information from...

    I'm trying to take information from one mysql table and put it into another. It's VERY hard to explain but here's my code: $con = include('dbc.php'); mysql_select_db("tb_begamer, $con")...
  12. B

    Image source from URL query

    okay I have a URL query that contain's an img source - display.php?f=/Upload/art/&p=Bkground.jpg What would the code be inside display.php to embedd the image in? also I'm not sure that the query is correct, if so then please correct me. Thanks! :redface:
  13. B

    Duplicate and Embbedd

    Thanks! Great help but two questions - 1. I have an image in /uploaded/art/ so would the query be /display.php?p=uploaded/art&f=foo.jpg ? 2. In display.php do I need to put any code in it so it embedd's in the exact place I want it? Thanks! Even KINDER Regards BeGamer26
  14. B

    Duplicate and Embbedd

    Okay, So I have created a file upload system that when you upload a file, it puts a link into my database. But when I go onto the link its JUST the picture/file! Is there anyway I could create a page that gets duplicated in the file upload process and the file gets embedded in the page? Kind...
  15. B

    Profile pic feature for my login script - NO CODES NEEDED

    Thank's, Ive already protected my login script from mysql injection but forgot to add it t this script XP
  16. B

    PHP Login Script Source V0.9

    Okay before I upload this I need to check if 1.I'm allowed and 2.If I'm posting in the right place XP, Stay tuned for when I get these WELL NEEDED permmisions ;). I will be uploading an instruction manual aswell if I am allowed to :tongue:
  17. B

    Profile pic feature for my login script - NO CODES NEEDED

    No Worry's I fugured it out! 8P I was using an un-needed loop <?php $COOKIE=$_COOKIE['username']; $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("begamer", $con); $result = mysql_query("SELECT profilepic FROM...
  18. B

    Profile pic feature for my login script - NO CODES NEEDED

    Okay I can upload the file, write the directory into the database but I cant get it to display it? heres a selection of my code, tell me whats wrong please - <table width="130" border="1"> <tr> <td height="130"><img src=" <?php...
  19. B

    Profile pic feature for my login script - NO CODES NEEDED

    Okay I have succesfully created a login/register/accountpage php script but now I want to add onto that and create a feature that allows you to create a profile picture and keep it as YOUR profile picture. I dont need any codes as I will create the myself for the sake of learning but if you need...
Top