Help with first PHP game need help

I thought of a game idea that people could use on facebook that is based off of Sudoku but I have no knowledge of PHP directly although I have read this is the best format for facebook games. I came up with this type of sudoku when working with the memory challenged elderly and noticed regular sudoku is too complex for them but if I could replace the numbers with photos they could play this in a new way. I need help in where to start writing this code where the program will end up looking good but in the quickest , beginner steps explaniation thanks

If you don’t know PHP at all, you need to start tutorials and learn it first. Only after you’ve learnt PHP, could you break down into your game into a PHP system that you could then program.

hey im not sure if this will help you its written in js it was a project i started but never finished
[php]

Sudoku table#sudoku td {width: 2.5em; height:2.5em; border-width: 1px; border-style: solid; border-color: black; font-weight: bold; text-align: center }

table#sudoku {
border-width: 3px;
border-style: solid;
border-color: black
}

table#sudoku td[id^=cell_2] {border-right-width: 2px}
table#sudoku td[id^=cell_5] {border-right-width: 2px}
table#sudoku td[id$=_2] {border-bottom-width: 2px}
table#sudoku td[id$=_5] {border-bottom-width: 2px}
td.selected {background-color: rgb(90%, 90%, 0%)}
td.tofill {color: blue}

Sudoku

Save


Restore

2 7
5 2 1
3 8 7
5 7 2
1 3
9 6 1
2 7 8
8 9 5
4 6

[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service