Jump to content

Score Update/Result via Function


firedealer

Recommended Posts

I'm new to function and I can't figure how to update/result the score.

 

I developed a game called Rock, Paper, & Scissors, so I can learn the function itself with a simple game for now.

 

http://pastebin.com/9MB7ATnt

 

Any tips or instruction would be much appreciated.

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/234550-score-updateresult-via-function/
Share on other sites

Eh, I just added:

 

$_SESSION['win'] = empty($_SESSION['win']) ? NULL : $_SESSION['win'];

$_SESSION['lose'] = empty($_SESSION['lose']) ? NULL : $_SESSION['lose'];

$_SESSION['tie'] = empty($_SESSION['tie']) ? NULL : $_SESSION['tie'];

 

Now, it's working without any glitch or burp.  Thanks!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.