6
votes
What’s the best way to separate PHP Code and HTML?
Personally, I live by the "conditionals and loops" rule: my HTML can contain only conditionals and loops in PHP code. This is a subjective rule, obviously, but it's a good principle. You can use PH …
15
votes
PHP as a template language, or some other PHP templating script?
Don't forget that PHP's original purpose was to be a templating language. I work by the "conditionals and loops" principle: in general, I only use PHP's conditionals and loops in my templates, and …
1
vote
What does a PHP developer need to know about https / secure socket layer connections?
Be sure that, when on an HTTPS page, all elements on the page come from an HTTPS address. This means that elements should have relative paths (e.g. "/images/banner.jpg") so that the protocol is inh …
0
votes
How do I rotate an image at 12 midnight every day?
It doesn't even have to be in cron:
<?php
// starting date for rotation
$startDate = '2008-09-15';
// array of image filenames
$images = array('file1.jpg','file2.jpg',...);
$sta …
3
votes
What, in your mind, is the best PHP MVC framework?
Frameworks like Cake are sometimes far too bloated for an application. The feature set is overkill for a small app, and they're entirely too inefficient for an app that gets a lot of traffic.
…
1
vote
PHP: $_SESSION - What are the pros and cons of storing temporarily used data in the $_SESSION variable
IMO, it's perfectly acceptable to store things in the session. It's a great way to make data persistent. It's also, in many cases, more secure than storing everything in cookies. Here are a few co …
3
votes
How to Truncate a string in PHP to the word closest to a certain number of characters?
Use strpos and substr:
$truncated = substr($longString,0,strpos($longString,' ',200)-1);
This will give you a string truncated at the first space after 200 charact …
1
vote
CakePHP View including other views
Elements work if you want them to have access to the same data that the calling view has access to.
If you want your embedded view to have access to its own set of data, you might want to u …
4
votes
PHP: GET-data automatically being declared as variables
Looks like register_globals in your php.ini is the culprit. You should turn this off. It's also a huge security risk to have it on.
If you're on shared hosting and can't modify php.ini, you …
1
vote
Do htmlspecialchars and mysql_real_escape_string keep my PHP code safe from injection?
An important piece of this puzzle is contexts. Someone sending "1 OR 1=1" as the ID is not a problem if you quote every argument in your query:
SELECT fields FROM table WHERE id='". …
1
vote
“SELECT * FROM users WHERE id IN ( )” == FAIL
I would say that passing an empty array as argument for an IN() clause is an error. You have control over the syntax of the query when calling this function, so you should also be responsible for t …
1
vote
Where do the responsibilities of a Db Abstraction in PHP start and end?
There are already some great solutions for this. A DAL is not a simple thing, especially since so many security concerns are involved. I would suggest checking out …
0
votes
PHP/MySQL update a news record in a database problem
It's a little hard to know exactly what's going on without seeing the HTML source of your form, but I think that the
if (array_key_exists('update', $_POST)) {
bloc …
0
votes
Should I be extending this class? (PHP)
You should absolutely extend the ORM class. Different things should be objects of different classes. Customers are very different from Products, and to support both in a single ORM class would be u …
1
vote
Apache/php guru needed! htaccess files, php, includes directories, and windows XAMPP configuration nightmare!
You can alter the include_path on each request using ini_set(). This would avoid having to use htaccess at all.
…
