In order to find out how to check for the presence of a secure connection in PHP, I looked into some https related wordpress plugins and noticed that there are several ways to check for this presence.
For example, checking for the server port 443, on which on agreement HTTPS traffic should run, assigned by the IANA. Nice and all, but my hosting provider does not support this. So code like this will fail to detect the secure connection:
if($_SERVER['SERVER_PORT'] != '443') {
Creative as I am Read More


Using jQuery Mobile docs examples
What got me stuck for a while, building my first app with jquery mobile,
, was the lack of an option to peek around in the code of the examples presented in the jquery mobile docs.
On the site an example would read:
When inspecting the resulting element Read More »