Rhianna
New Member
- Messages
- 988
- Reaction score
- 0
- Points
- 0
Hi,
I'm on a quest to create a card game script.
You can read all about my quest at freewebspace.net here
I like tarot cards and I would like to program images of tarot card spreads on my site to offer free readings. I'd like to display the cards and my interpretations of those cards automatically.
This is an interesting programming project & I know the results won't be instant.
I've been thinking of various ways of creating the script.
I am thinking of using PHP and possibly Java or CGI.PERL. What other scripting langages would you use? This is something that interests me, so I will try to begin at a simpler level and then progress.
Right now I have been looking into how to create Arrays:
I am currently reading a book entitled Relational Database Design Clearly Explained by Jan L. Harrington and in the future would like to merge interpretations into databases so that my online readings could become very complex (that's a bit into the future).
I am a beginning programmer & I am considering various scripts that I might use and/or build upon. Has anyone he created a card game program like Poker or Keno or anything? If you wanted to download a free zip file of (regular) playing card images (gifs) for either personal or professional use, you could do so at
http://www.jfitz.com/cards/
and create a solitaire game or other card game. If you are interested in programming arrays or programming objects such as cards and shuffling them at random, be sure to read
this post of mine because I included many educational links to programming so that others might learn & benefit from this project of mine
So please take a look and if you have any ideas, post them to this forum or PM me either at x10Hosting or at PCRiot
Thanks & Happy Programming
I'm on a quest to create a card game script.
You can read all about my quest at freewebspace.net here
I like tarot cards and I would like to program images of tarot card spreads on my site to offer free readings. I'd like to display the cards and my interpretations of those cards automatically.
This is an interesting programming project & I know the results won't be instant.
I've been thinking of various ways of creating the script.
I am thinking of using PHP and possibly Java or CGI.PERL. What other scripting langages would you use? This is something that interests me, so I will try to begin at a simpler level and then progress.
Right now I have been looking into how to create Arrays:
Arrays are the most common data structure that you will encounter in programming. They are so common, in fact, that they are "built-in" to many languages, including C, C++ and Java. An array is a homogeneous, random access data structure. Random Access means that it takes the same amount of time to access any element of the array (ie. you do not have to go through the array to find the element you are looking for). When we look at other data structures it will put this feature in perspective. Homogeneous means that all of the elements are of the same data type. Arrays can hold primitive types or references. [1]
I am currently reading a book entitled Relational Database Design Clearly Explained by Jan L. Harrington and in the future would like to merge interpretations into databases so that my online readings could become very complex (that's a bit into the future).
I am a beginning programmer & I am considering various scripts that I might use and/or build upon. Has anyone he created a card game program like Poker or Keno or anything? If you wanted to download a free zip file of (regular) playing card images (gifs) for either personal or professional use, you could do so at
http://www.jfitz.com/cards/
and create a solitaire game or other card game. If you are interested in programming arrays or programming objects such as cards and shuffling them at random, be sure to read
this post of mine because I included many educational links to programming so that others might learn & benefit from this project of mine
So please take a look and if you have any ideas, post them to this forum or PM me either at x10Hosting or at PCRiot
Thanks & Happy Programming
Last edited: