MichaelMrt / ChessPHP

Programming Chess in PHP
1 stars 0 forks source link

Maybe put all SESSION Data into ['chessboard'] #45

Closed MichaelMrt closed 1 month ago

MichaelMrt commented 5 months ago

This could save us from creating dozens of hidden inputs to transmit data. We could put it all into the chessboard array and only sent the data.

Have to test how it will be decoded

MichaelMrt commented 5 months ago

Also the class vars like $whitesturn need to be checked. They are doubled with $whitesturn and $_SESSION['whitesturn'] which leads to confusion

MichaelMrt commented 1 month ago

$_SESSION data is transmitted even without hidden inputs