Search Results

2
votes

How do you write good PHP code without the use of a framework?

Even If you don't use a framework, use a template engine. By using templates, you'll seperate the logic and presentation of your application. Then design, code and format the logic part like what y …
0
votes

How to get a variable name as a string in PHP?

What are the possible different ways that you can get that variable ? You can just do this ;) print "FooBar" …
4
votes

Detecting https requests in php

If the load balancer is the other end of the SSL connection, you cannot get any more info than the load balancer explicitly provides. I would go for adding a http header, it may already be doing th …
2
votes

How do I create a unix password hash with php

Use crypt. Recent linux/unixes use CRYPT_MD5 or CRYPT_BLOWFISH. MD5 is the most widely supported one. DES's are for old …
0
votes

What options are there for executing a PHP script at a certain time every day?

You can write a long running script that runs your main script in predefined times but it will be very unnecessary, error prone, and it will basically be a "cron rewrite in phph". Using the …