January 5, 2012
Here is one method of how to integrate a Ruby on Rails application and a PHP application or even just static HTML using Apache webserver. One reason for doing this could be (in this website’s case) that your main website application is Rails but you want to use WordPress or… [...]
May 17, 2011
I recently took my first steps as a freelance web developer; actually these were less steps but rather poking a foot in to test the water. I found it neither too hot to handle, nor too cold for comfort (luke warm I suppose you call it) but all the same… [...]
April 15, 2011
PHP has the function string strval($var) to return a string value from the variable which is great but the string value of a boolean is either 1 or 0 so this will not return the string “true” or “false”. This simple little example and function shows this and is great… [...]
September 24, 2007
This has probably been done before and probably in a better way but I was quite pleased with doing this myself. This PHP code will build and fill a table with the contents of your XML file. “; echo “”; echo “COL1″; echo “COL2″; echo “COL3″; echo “COL4″; //Initialises… [...]