Search entire blog
Categories
Useful links
-
Category Archives: PHP
How to enable a splash page before loading tradingeye index.php file
A lot of people installed Tradingeye on the root: http://www.domain-name.com/index.php and they want to create a splash page with a link to their shop. How to do it? [ad#ad-1] You need to create an index.html file as below: [sourcecode language='html'] … Continue reading
Funday Friday – Let a thousand string concatenations bloom
How many different ways (in PHP) are there to concatenate the string values in two variables and put the result in a third variable? Here are a few to start: $alice = $bob . $charlie; $alice = “$bob$charlie”; $alice = … Continue reading
