PHP is a widely-used, general-purpose scripting language that is especially suited for web development.

learn more… | top users | synonyms (1)

532
votes
43answers
41k views

What makes PHP a good language? [closed]

I made a tongue-in-cheek comment in another question thread calling PHP a terrible language and it got down-voted like crazy. Apparently there are lots of people here who love PHP. So I'm genuinely ...
341
votes
18answers
49k views

Best way to stop SQL Injection in PHP

So specifically in a mysql database. Take the following code and tell me what to do. // connect to the mysql database $unsafe_variable = $_POST["user-input"]; mysql_query("INSERT INTO table ...
270
votes
21answers
10k views

How should I ethically approach user password storage for later plaintext retrieval?

As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
229
votes
16answers
41k views

datetime vs timestamp?

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
225
votes
23answers
7k views

Exploitable PHP functions

I'm trying to build a list of functions that can be used for arbitrary code execution. The purpose isn't to list functions that should be blacklisted or otherwise disallowed. Rather, I'd like to have ...
217
votes
19answers
7k views

Why is OOP hard for me? [closed]

I have trouble writing OOP in PHP... I understand the concept but I never create classes for my projects... mainly because it's often a small project and nothing complex. But when I read OOP, it seems ...
207
votes
1answer
6k views

Reference - What does this symbol mean in PHP?

What is this? This is a collection of questions that come up every now and then about syntax in PHP. This is also a Community Wiki, so everyone is invited to participate in maintaining this list. ...
196
votes
8answers
12k views

Why doesn't this code simply print letters A to Z?

<?php for ($i = 'a'; $i <= 'z'; $i++) echo "$i\n"; This snippet gives the following output (newlines are replaced by spaces): a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ...
182
votes
71answers
19k views

Any good PHP IDE, preferably free or cheap?

Does anyone know of any good IDE (Code completion, Syntax coloring, etc) that will handle php. Looking for anything that might be relatively cheap or free and doesn't run like crap (IE: Eclipse)
181
votes
9answers
108k views

PHP: self vs. $this

In PHP5, what is the difference between using self and $this? When is each appropriate?
177
votes
12answers
12k views

How to parse and process HTML with PHP?

How can one parse HTML and extract information from it? What libraries exist for that purpose? What are their strengths and drawbacks? This is a General Reference question for the php tag
173
votes
79answers
31k views

Hidden Features of PHP? [closed]

EDIT: This didn't really start as a hidden features of PHP topic, but thats what it ended up as, so go nuts. I know this sounds like a point-whoring question but let me explain where I'm coming ...
163
votes
34answers
59k views

Good PHP ORM Library?

Is there a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the ...
156
votes
10answers
4k views

PHP tutorial that is security-, accuracy- and maintainability-conscious?

Colleagues often ask me: “bobince”, they say*, “I want to learn PHP, but I know you're always ranting on about poor code which is full of errors and security holes. That's why I normally don't like ...
138
votes
15answers
25k views

mysqli or PDO - what are the pros and cons?

In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
137
votes
23answers
8k views

Tactics for using PHP in a high-load site

Before you answer this I have never developed anything popular enough to attain high server loads. Treat me as (sigh) an alien that has just landed on the planet, albeit one that knows PHP and a few ...
134
votes
13answers
29k views

Deploy a project using Git

How can I deploy a PHP website using Git? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about accomplishing this?
134
votes
14answers
44k views

PHP and Enums

I know that PHP doesn't have native Enumerations. But I have become accustomed to them from the Java world. I would love to use enums as a way to give predefined values which IDEs' auto completion ...
133
votes
12answers
37k views

Secure hash and salt for PHP passwords

It is currently said that MD5 is partially unsafe. Taking this into consideration, I'd like to know which mechanism to use for password protection. Is “double hashing” a password less secure than ...
127
votes
9answers
40k views

What's the best method for sanitizing user input with PHP?

Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?
122
votes
30answers
63k views

What is the best PHP programming book? [closed]

I'm interested to find out what Stack Overflow believes the best PHP book is - both for those who are beginners to web programming as well as those who have previous programming experience (they don't ...
119
votes
18answers
85k views

Convert HTML + CSS to PDF with PHP?

Ok, I'm now banging my head against a brick wall with this one. I have an HTML (not XHTML) document that renders fine in Firefox 3 and IE 7. It uses fairly basic CSS to style it and renders fine in ...
116
votes
18answers
2k views

Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?

Question Part A ▉ (100 bountys, awarded) Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
115
votes
39answers
7k views

Common programming mistakes for PHP developers to avoid? [closed]

In the spirit of Common programming mistakes for .NET developers to avoid?, what are common mistakes PHP developers make? Using == when === should be used is a common one. What are some others ...
109
votes
8answers
5k views

In a PHP project, what patterns exist to store, access and organize helper objects? [closed]

How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project? Say I have a large PHP CMS. The CMS ...
108
votes
18answers
72k views

What CodeIgniter authentication library is best? [closed]

I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?
105
votes
7answers
19k views

Is there a static code analyzer [like Lint] for PHP files?

Is there a static code analyzer for PHP files? The binary itself can check for syntax errors, but I'm looking for something that does more, like unused variable assignments, arrays that are assigned ...
104
votes
35answers
7k views

Top bad practices in PHP [closed]

I've learned from Stack Overflow that some of the code I've been writing so far is considered "bad practice". Like using tons of global variables, create_function() etc. I'm curious to know more about ...
96
votes
20answers
28k views

Are PHP short tags acceptable to use?

Here's the info according to the official documentation: There are four different pairs of opening and closing tags which can be used in php. Two of those, <?php ?> and <script ...
95
votes
13answers
16k views

PHP Session Security

What are some guidelines for maintaining responsible session security with PHP? There's information all over the web, so it's about time it all landed in one place!
93
votes
14answers
13k views

What is the best way to stop people hacking the PHP-based highscore table of a Flash game

I'm talking about an action game with no upper score limit and no way to verify the score on the server by replaying moves etc. What I really need is the strongest encryption possible in Flash/PHP, ...
89
votes
9answers
3k views

I never really understood: what is CGI?

CGI is a Comman Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this and I felt this every ...
88
votes
6answers
29k views

How does Magento code work?

How can the following be accomplish in Magento? Display a "Hello World" message using a controller/view/model approach. So, if I went to http://mysite.com/myController it would show the string ...
87
votes
10answers
2k views

Why are the built in functions in PHP named so randomly?

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type ...
81
votes
5answers
64k views

What is stdClass in PHP?

I have search in Google but couldn't find an answer. Please define what is stdClass.
78
votes
5answers
16k views

How do you use bcrypt for hashing passwords in PHP?

Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11" OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a ...
78
votes
6answers
5k views

Setting up a deployment / build / CI cycle for PHP projects

I am a lone developer most of my time, working on a number of big, mainly PHP-based projects. I want to professionalize and automate how changes to the code base are handled, and create a Continuous ...
78
votes
4answers
49k views

correct HTTP header for json file

I've searched around and found two different ways to define Content-type for JSON file loaded with php. header('Content-type: text/json'); header('Content-type: application/json'); which one should ...
76
votes
16answers
2k views

Tetris'ing an array

Consider the following array: /www/htdocs/1/sites/lib/abcdedd /www/htdocs/1/sites/conf/xyz /www/htdocs/1/sites/conf/abc/def /www/htdocs/1/sites/htdocs/xyz /www/htdocs/1/sites/lib2/abcdedd what is ...
76
votes
18answers
42k views

Which is the best PDF library for PHP? [closed]

I'm wondering which is the best PDF creation library for PHP, mainly for creating PDFs from scratch (not as much HTML to PDF)? I have worked with FPDF for quite a while now, but it's getting quite ...
74
votes
7answers
84k views

How do I expire a PHP session after 30 minutes?

I need to keep a session alive for 30 minutes and then destroy it.
74
votes
50answers
21k views

What's the best way to separate PHP Code and HTML?

I really don't like mixing PHP and HTML. Mixing them makes it difficult to maintain both the PHP and the HTML, and it just makes sense to keep the two apart. See also the question on whether PHP is a ...
71
votes
18answers
9k views

What's your 'no framework' PHP framework?

Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP ...
71
votes
10answers
6k views

How Is PHP Done the Right Way?

I keep hearing about how often php results in lousy code and practices. Given these criticisms and popularity of the language, what are best practices (in general) to insure that these poor habits ...
70
votes
2answers
28k views

PHP detecting request type (GET, POST, PUT or DELETE)

How can I detect which request type was used(GET, POST, PUT or DELETE) in php?
69
votes
14answers
5k views

How does Facebook achieve good performance?

Almost everyone has a Facebook account, even people who are not familiar with the Internet. With millions people actively using Facebook, updating their status, replying to messages, uploading photos ...
69
votes
11answers
25k views

Robust, Mature HTML Parser for PHP

Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
68
votes
19answers
3k views

How do I prevent site scraping?

I have a fairly large music website with a large artist database. I've been noticing other music sites scraping our site's data (I enter dummy Artist names here and there and then do google searches ...
67
votes
12answers
101k views

Easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard) or 10.7 (Lion)?

What is the easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard)? I'd prefer to use any bundled versions before resorting to downloading from the PHP or MySQL websites. I'm ...
67
votes
9answers
6k views

Best way to allow plugins for a PHP application

I am starting a new web application in PHP and this time around I want to create something that people can extend by using a plugin interface. I am a very confident PHP developer however I have never ...

1 2 3 4 5 3717