No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
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 …
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 …
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" …
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 …
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] …
The End.
telcontar