Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~915 People Reached
Favorite Forums

5 Posted Topics

Member Avatar for telcontar

I'm planning to do a simple game engine (the core functionality in c++) from my own and I want to start with the scripting engine as I want this to be very 'modable', I did not coded anything yet, so suppose that exists a OOP scripting language in which I …

Member Avatar for telcontar
0
122
Member Avatar for Zurompeta

Integer overflow is happening here i think. PHP is not able to handle unsigned integers, and converts values over 2^31 to signed. Also note that php int size is platform dependant. For 32 bits PHP_INT_SIZE is 4 and for 64bit systems is 8. Use GMP or bcmath extensions ("for arbitray …

Member Avatar for Zurompeta
0
304
Member Avatar for rahul8590

First things first, do yourself a favor and get a html & php editor preferably with syntax checking (some are free, google for notepad++) it saves alot of time... Ok In your html file: 1. Make sure you close your html tags (/>) 2. Is [CODE]<input type = "text" name="sender_name" …

Member Avatar for telcontar
0
157
Member Avatar for telcontar

Hi, kind of new in PHP since I'm reading a 'novice to pro' one :) I was wondering how php experienced users deal with these two (at least for me) hot topics? What's your way of implementing it? Is there any 'convention' about this and not a merely a personal …

Member Avatar for ShawnCplus
0
112
Member Avatar for zeusofolus

I've read your code until here (as a learning excersise, lol) and if i understood you well: [code]list( ,$key ) = explode( '-',$key ); [/code] may be that's part of your problem: you have a comma at the left of $key, let me explain: if you do something like [code] …

Member Avatar for zeusofolus
0
220

The End.