$_SERVER[’PHP_SELF’], $_SERVER[‘REQUEST_URI’], and $_SERVER[’SCRIPT_NAME’] all behave in similar ways, they return information about what file is being used. When exposed to some differnt scenarios, you can see in some cases they do behave differently. This can help you decide which is best for what you need in your script.
Category Archives: Programming
InterAKT mark-up language
InterAKT mark-up language The InterAKT Dynamic Data The InterAKT Dynamic Data tool is a replacement for the standard dynamic data dialog. It is used in the MX Kollection 3, to provide a unified way of building mark-ups, or place holders. These are recordset fields, server or session variables, and other types of dynamic data that …
How to install a template in phpbb3
How to install a template in phpbb3 from M M on Vimeo.
Disable the cache in phpbb3
Disable the cache in phpbb3 from M M on Vimeo.
How to purge the cache in phpbb3
How to purge the cache in phpbb3 from M M on Vimeo.
PHP get image size and information
< ?php $size = getimagesize(“http://www.example.com/gifs/logo.gif”); // if the file name has space in it, encode it properly $size = getimagesize(“http://www.example.com/gifs/lo%20go.gif”); ?>