Tagged Questions
PHP is a widely-used general-purpose server side scripting language that is especially suited for web development. The current STABLE version is 5.4.3, released on May 8, 2012. The latest development changes can be found at: Current branch of PHP 5.4 See also the UPGRADING and ...
256
votes
14answers
21k 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
548
votes
10answers
75k views
Best way 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 ...
295
votes
1answer
11k 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.
...
183
votes
12answers
45k 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 ...
89
votes
11answers
30k 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 ...
35
votes
5answers
772 views
Reference: What is a perfect code sample using the MySQL extension?
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 ...
7
votes
7answers
2k 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>
...
127
votes
22answers
33k 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 ...
31
votes
5answers
2k 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 ...
114
votes
7answers
110k 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.
151
votes
31answers
77k 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 ...
207
votes
34answers
71k 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 ...
88
votes
14answers
143k 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 below form:
2 years, 3 months and 2 days
How can I do this ...
161
votes
8answers
52k 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?
57
votes
0answers
8k views
How to parse HTML with PHP? [closed]
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, ...
78
votes
18answers
50k views
Website screenshots using PHP
Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
22
votes
7answers
11k views
Best XML Parser for PHP
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 ...
203
votes
72answers
22k 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)
26
votes
10answers
2k views
Who needs singletons?
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 ...
88
votes
9answers
133k 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: ...
11
votes
4answers
3k views
MySQL, NoSQL: help me to choose the right one! (on a )
Ok, i've a bit of experience with mysql+php. In fact, i'm not a full time developer and that's the only stuff i really do know.
Here is what i have to do.
There is a big database, 1G of records ...
150
votes
19answers
109k 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 ...
48
votes
9answers
31k 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 ...
5
votes
6answers
2k 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 ...
-112
votes
3answers
54k views
How to send 100,000 emails weekly?
How can one send an email to 100,000 users on a weekly basis in PHP? This includes mail to subscribers using the following providers:
AOL
G-Mail
Hotmail
Yahoo
It is important that all e-mail ...
41
votes
10answers
19k 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, ...
4
votes
2answers
881 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 ...
85
votes
7answers
71k views
Best way to use PHP to encrypt and decrypt?
I plan to store foreign account information for my users on my website, aka rapidshare username and passwords, etc... I want to keep information secure, but i know that if i md5 their information, i ...
10
votes
1answer
535 views
Converting ereg expressions to preg
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 ...
39
votes
5answers
20k views
MySQL Great Circle Distance (Haversine formula)
I've got a working PHP script that gets Longitude and Latitude values...then inputs them into a MySQL query. I'd like to make it solely MySQL.
Here's my current PHP Code:
if ($distance != "Any" ...
24
votes
20answers
10k 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 ...
28
votes
10answers
29k views
Code obfuscator for php?
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.
...
113
votes
5answers
26k 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 ...
10
votes
2answers
4k views
Alternative for PHP_excel
Is there any alternative for PHP_excel which can "Export to XLSX/XLS" file in a customized format?
10
votes
4answers
692 views
How to prevent SQL injection with dynamic tablenames?
I had this discussion with a high rep php guy:
PDO has no use here. as well as mysql_real_escape_string.
extremely poor quality.
This of course is cool, but I honestly don't know what's wrong ...
53
votes
5answers
14k views
Do htmlspecialchars and mysql_real_escape_string keep my PHP code safe from injection?
Earlier today a question was asked regarding input validation strategies in web apps.
The top answer, at time of writing, suggests in PHP just using htmlspecialchars and mysql_real_escape_string.
...
46
votes
5answers
14k views
How can I store my users' passwords safely?
How much more safe is this than plain MD5? I've just started looking into password security. I'm pretty new to PHP.
$salt = 'csdnfgksdgojnmfnb';
$password = md5($salt.$_POST['password']);
$result = ...
172
votes
17answers
30k 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 ...
66
votes
22answers
10k views
PHP Framework Decision - Analysis paralysis! [closed]
OK, sorry in advance for the length of this question!
I've spent ages reading about the pros and cons of all the major PHP Frameworks (i.e. Zend, CakePHP, Symfony, CodeIgniter, etc., etc.). I've also ...
123
votes
14answers
22k views
PHP Session Security [closed]
What are some guidelines for maintaining responsible session security with PHP? There's information all over the web and it's about time it all landed in one place!
135
votes
13answers
82k views
How should I choose an authentication library for CodeIgniter?
I see there are a few. Which ones are maintained and easy to use? What are their pros and cons?
35
votes
15answers
82k 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, ...
38
votes
14answers
53k views
PHP validation/regex for URL
I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations.
...
17
votes
4answers
2k 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)
{
...
71
votes
13answers
50k views
Pass a PHP string to a Javascript variable (including escaping 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 ...
135
votes
10answers
24k 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 ...
70
votes
21answers
18k views
How do you implement a good profanity filter?
Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out.
Where ...
247
votes
8answers
135k views
PHP: self vs. $this
In PHP5, what is the difference between using self and $this? When is each appropriate?
49
votes
16answers
15k views
SIMPLE PHP MVC Framework! [closed]
I need a simple and basic MVC example to get me started. I dont want to use any of the available packaged frameworks.
I am in need of a simple example of a simple PHP MVC framework that would allow, ...
59
votes
5answers
32k views
file_get_contents VS CURL, what has better performance?
I am using PHP to build a web crawler to crawl millions of URLs, what is better for me in terms of performance? file_get_contents or CURL?
Thanks.