Jump to content
MakeWebGames

Jigsaw

Members
  • Posts

    103
  • Joined

  • Last visited

Personal Information

  • Interests
    N/A
  • Occupation
    Student

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jigsaw's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Jigsaw

    Increments

    Thanks for the reply. I get the idea that ++i will increase the value of whatever "i" may be and then return/show the new value of "i" and i++ will increase the value of "i" but still keep the original value... Could you please provide me with an example where this might be used in mccodes (just to strengthen my understanding)?
  2. Jigsaw

    Increments

    Hi, im learning PHP atm and I'm very confused about how increments work and am failing to make sense of this example that was given to me: e.g. $a = 2; $b = $a++; // $a=3, $b=2 $a = 2; $b = ++$a; // $a=3, $b=3 So "$b" is simply in other terms "$a+1"? And "$a" is 2, therefore $b is supposed to be 3 right? But it says its 2 instead? Could explain how this works pls  
  3. Thanks I'll add shortly
  4. Hi, ​​​​​​I've recently set myself a goal to learn PHP. After years of playing around with Mccodes and not moving past the basics of the language (understandable as I didnt follow any books or tutorials). I want to be able to understand this language to run my own game. Ive already started with a HTML & CSS course via Code academy and have learnt a lot and have taken my time with it, so I can understand all the content. I have also started learning PHP through SoloLearn on my phone and will start the CodeAcademy course on it soon as well to strengthen my knowledge.. ​​​​​​LONG STORY SHORT: However, there are times I get really stuck in PHP and cannot understand some areas of the language and would appreciate if someone would mentor me through Skype, please post below and I'll you if you like to help ​​​​​​ ​​​​Thanks all   ​​​
  5. Yh sorry I had tested it. And it did have some errors when submitting a comment, but I'm gonna assume its fixed now after your recent posts Thanks
  6. Thanks I'll try this out as soon as I can and report back*
  7. [uSER=53425]Magictallguy[/uSER] thanks, could you link me to it please?
  8. Some ideas: - internal Federal jail system (message system in-game) - voting system with incentive built in (struggle with this) - user profile comments (can't seem to find a good free one)
  9. Still available for $20
  10. Still selling.
  11. Need to get rid of this asap
  12. Haven't been in touch, sorry I'm willing to accept $20, if noone else wants to bid, please PM me, thanks!
  13. Hi, I lost all my files in a emergency reboot, so in the process I've lost all my mods and other files. So, I've decided to sell my license, please message me your prices, thank you
  14. Jigsaw

    Get action

    try this   $_GET['action'] = isset($_GET['action']) && ctype_alpha($_GET['action']) ? $_GET['action'] : null;
  15. Tried playing around with the code but to no avail ...
×
×
  • Create New...