24
Mar
Event:Selectors
event:Selectors allow you to apply an event such as mouseover, mouseout, click, et al using a CSS style syntax. It keeps your layers separated and greatly reduces the amount of code you have to write.
24
Mar
event:Selectors allow you to apply an event such as mouseover, mouseout, click, et al using a CSS style syntax. It keeps your layers separated and greatly reduces the amount of code you have to write.
24
Mar
PHP scripts and tips on file systems, including creating and removing directories, copying and removing files, dumping directory contents for an array, parsing file path names, etc.
24
Mar
PHP programmers frequently need to temporarily encode data and decode it later. The functions below, which are essentially just wrappers for the Mcrypt Encryption Functions, provide an easy way to do this and are especially useful …
24
Mar
Working with strings is done very often for the web, and PHP is probably one of the best programming languages for manipulating strings
I guarante that there are a function or combination of string functions for Anything you ever need.
24
Mar
A collection of 19 tips on creating your own PHP functions. Clear answers are provided with tutorial exercises on defining functions, defining arguments, passing references, returning references, argument default values, etc.
24
Mar
A common problem PHP developers run into is working with the current local time in the user's locale rather than that of the server…
24
Mar
A collection of 23 tips on understanding and managing cookies in PHP. Clear explanations and tutorial exercises are provided on setting and receiving cookies, …