-4

如果我要创建一个小型在线足球投注“系统”,用户可以在每个文本框中输入两个数字,代表所选球队的进球数(即阿森纳 3 - 0 切尔西)。然后,根据现实生活中的结果,用户应该获得一种货币奖励(仅在网站上 - 不是在现实生活中),100P 表示正确下注,50P 表示几乎,最后 0 表示完全错误 - 只是为了举个例子。

我将如何去创造它?我猜我会使用一个相当简单的 PHP 吗?我在 CMS WordPress 上运行该项目,因此我认为用户集成、存储货币的数据库等已经可用,以及其他非常有用的系统功能。我可能会在我的网站中手动输入真实的正确值,以减轻编程的痛苦,但它需要一个自动功能才能将积分传送到相应的用户帐户。

4

1 回答 1

1
  1. create betting form in html
  2. submit user's bet to a SQL database table "bats" attached to their username and the gameid of a particular game
  3. have another table "scores" with the actual score for that game attached to the gameid
  4. when the user logs in / views their bets page if the score is in the "scores" table (rather than the row being null / whatever default value) it will then issue them a score
  5. simple PHP can determine how far off they were

Theres the breakdown, go use google

于 2012-04-12T16:53:57.417 回答