PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.

learn more… | top users | synonyms (6) | php jobs

1464
votes
24answers
201k views

How to prevent SQL injection in PHP?

If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example: $unsafe_variable = $_POST['user_input']; mysql_query("INSERT ...
573
votes
27answers
78k views

How to parse and process HTML/XML?

How can one parse HTML/XML 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
204
votes
9answers
35k views

Headers already sent by PHP

When running my script I get several errors looking like this: Warning: Cannot modify header information - headers already sent by (output started at /some/file.php:12) in /some/file.php on line ...
222
votes
7answers
10k views

Why shouldn't I use mysql_* functions in PHP?

What are the technical reasons that I shouldn't use mysql_* functions? (like mysql_query(), mysql_connect() or mysql_real_escape_string())? Why should I move away from them as long as it works on my ...
59
votes
14answers
80k views

mysql_fetch_array() expects parameter 1 to be resource, boolean given in select

I am trying to select data from a table but get this error message: mysql_fetch_array() expects parameter 1 to be resource, boolean given.. This is my code: $username = $_POST['username']; ...
705
votes
5answers
55k 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. ...
49
votes
8answers
76k views

PHP: “Notice: Undefined variable” and “Notice: Undefined index”

I am running a PHP script, and keep getting errors like: Undefined variable: user_location in C:\wamp\www\mypath\index.php on line 12 Line 12 looks like this: $greeting = "Hello, ".$user_name." ...
100
votes
20answers
7k views

Reference - What does this error mean in PHP?

What is this? This is a number of answers about warnings, errors and notices you might encounter while programming PHP and have no clue how to fix. This is also a Community Wiki, so everyone is ...
352
votes
12answers
73k 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 ...
384
votes
6answers
82k 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 rules". But what is bcrypt? PHP doesn't offer any such functions, Wikipedia babbles about a file-encryption ...
29
votes
7answers
9k views

Grabbing the href attribute of an A element

Trying to find the links on a page. my regex is: /<a\s[^>]*href=(\"\'??)([^\"\' >]*?)[^>]*>(.*)<\/a>/ but seems to fail at <a title="this" href="that">what?</a> ...
141
votes
0answers
46k views

Robust and Mature HTML Parser for PHP [duplicate]

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 ...
225
votes
23answers
54k 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 ...
117
votes
11answers
12k views

UTF-8 all the way through

I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1. Where ...
23
votes
2answers
5k views

How can I convert ereg expressions to preg in PHP?

Since POSIX regular expressions (ereg) are deprecated since PHP 5.3.0, I'd like to know an easy way to convert the old expressions to PCRE (Perl Compatible Regular Expressions) (preg). Per example, I ...
187
votes
19answers
242k views

How to calculate the difference between two dates using PHP?

I have two dates of the form: Start Date: 2007-03-24 End Date: 2009-06-26 Now I need to find the difference between these two in the following form: 2 years, 3 months and 2 days How can I do ...
354
votes
15answers
127k views

Simple “Long Polling” example code?

I can find lots of information on how Long Polling works (For example, this, and this), but no simple examples of how to implement this in code. All I can find is cometd, which relies on the Dojo JS ...
129
votes
5answers
16k views

How should a model be structured in MVC?

I am just getting a grasp on the MVC framework and often I wonder how much code should go in the model. I trend of have a data access class that has methods like this: public function ...
280
votes
10answers
98k 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?
245
votes
5answers
194k 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.
321
votes
17answers
47k views

mysqli or PDO - what are the pros and cons? [closed]

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 ...
5
votes
0answers
385 views

Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error [duplicate]

Possible Duplicate: How to fix this error “mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in”? This is a canonical answer intended address this very ...
3
votes
3answers
1k views

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result [closed]

I get the error when trying to run this: <?php require_once('includes/DbConnector.php'); $connector = new DbConnector(); $result = $connector->query('SELECT title,content FROM staff_vacancies ...
156
votes
16answers
94k views

Website screenshots using PHP

Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
312
votes
26answers
178k 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 ...
4
votes
6answers
51k views

Call to a member function on a non-object

So I'm refactoring my code to implement more OOP. I set up a class to hold page attributes. class PageAtrributes { private $db_connection; private $page_title; public function ...
140
votes
10answers
232k views

Send email using GMail SMTP server from PHP page

I am trying to send an email via GMail's SMTP server from a PHP page but I get this error: authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: ...
9
votes
2answers
2k views

A simple program to CRUD node and node values of xml file

I decided to save setting in xml file since field takes only one value. My XML file is like <?xml version="1.0" encoding="UTF-8"?> <setting> <setting1>setting1 ...
39
votes
12answers
34k views

How to get useful error messages in PHP?

I find programming in PHP quite frustrating. Quite often I will try and run the script and just get a blank screen back. No error message, just empty screen. The cause might have been a simple syntax ...
65
votes
8answers
29k views

What is the difference between single-quoted and double-quoted strings in PHP?

I'm not an expert in PHP programming, but I'm a little confused why I see some code in PHP with string placed in single quotes and sometimes in double quotes. I just know in .NET, or C language, if ...
44
votes
7answers
47k views

Best XML Parser for PHP [closed]

I have used the XML Parser before, and even though it worked OK, I wasn't happy with it in general, it felt like I was using workarounds for things that should be basic functionality. I recently saw ...
43
votes
5answers
1k views

Reference: What is a perfect code sample using the MySQL extension? [closed]

This is to create a community learning resource. The goal is to have examples of good code that do not repeat the awful mistakes that can so often be found in copy/pasted PHP code. I have requested ...
276
votes
71answers
49k views

Any good PHP IDE, preferably free or cheap? [closed]

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)
46
votes
11answers
7k views

Who needs singletons? [closed]

Imagine you access your MySQL database via PDO. You got some functions, and in these functions, you need to access the database. The first thing I thought of is global, like: $db = new ...
137
votes
13answers
87k views

Pass a PHP string to a Javascript variable (and escape newlines)

What is the easiest way to encode a PHP string for output to a Javascript variable? I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a ...
57
votes
0answers
8k views

How to parse HTML with PHP? [duplicate]

Possible Duplicate: How to parse and process HTML with PHP? Suggestion for a reference question. Stack Overflow has dozens of "How to parse HTML" questions coming in every day. However, ...
28
votes
3answers
18k views

Alternative for PHP_excel

Is there any alternative for PHP_excel which can "Export to XLSX/XLS" file in a customized format?
64
votes
12answers
52k views

Code obfuscator for php? [closed]

Hey! Has anybody used a good obfuscator for PHP?, I've tried some but they dont work for very big projects. They can't handle variables that are included in one file and used in another, for instance. ...
112
votes
7answers
26k views

Are PDO prepared statements sufficient to prevent SQL injection?

Let's say I have code like this: $dbh = new PDO("blahblah"); $stmt = $dbh->prepare('SELECT * FROM users where username = :username'); $stmt->execute( array(':username' => ...
90
votes
11answers
59k views

php execute a background process

I need to execute a directory copy upon a user action, but the directories are quite large, so I would like to be able to perform such an action without the user being aware of the time it takes for ...
141
votes
5answers
84k views

Sort multidimensional Array by Value (2) [duplicate]

Possible Duplicate: How do I sort a multidimensional array in php How can I sort this array by the value of the "order" key? Even though the values are currently sequential, they will not ...
42
votes
5answers
6k views

PHP global in functions

I ask myself on the utility of the global keyword: Are there any reasons to prefer one method to another? Security? Performance? Anything else? Method 1: function exempleConcat($str1, $str2) { ...
89
votes
6answers
28k views

How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?

Can you explain the difference between == and ===, giving some useful examples?
59
votes
11answers
28k views

Using comet with PHP?

I was thinking of implementing real time chat using a PHP backend, but I ran across this comment on a site discussing comet: My understanding is that PHP is a terrible language for Comet, ...
9
votes
6answers
3k views

In PHP when submitting strings to the database should I take care of illegal characters using htmlspecialchars() or use a regular expression?

I am working on a form with the possiblity for the user to use illegal/special characters in the string that is to be submitted to the database. I want to escape/negate these characters in the string ...
36
votes
20answers
13k views

What are the best practices for avoiding xss attacks in a PHP site

I have PHP configured so that magic quotes are on and register globals are off. I do my best to always call htmlentities() for anything I am outputing that is derived from user input. I also ...
10
votes
3answers
4k views

How to squeeze error message out of PDO?

I can't seem to get any error message from PDO #$dbh->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING ); try { $sth = $dbh->prepare('@$%T$!!!'); print_r($sth); ...
64
votes
17answers
116k views

How to extract img src, title and alt from html using php?

I would like to create a page where all images which reside on my website are listed with title and alternative representation. I already wrote me a little program to find and load all HTML files, ...
17
votes
5answers
5k views

MySQL and NoSQL: Help me to choose the right one

There is a big database, 1,000,000,000 rows, called threads (these threads actually exist, I'm not making things harder just because of I enjoy it). Threads has only a few stuff in it, to make things ...
116
votes
9answers
22k views

PHP PDO: Can I bind an array to an IN() condition?

I'm curious to know if it's possible to bind an array of values to a placeholder using PDO. The use case here is attempting to pass an array of values for use with an IN() condition. I'm not very ...

1 2 3 4 5 705