341
votes
18answers
50k 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 ...
230
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.
139
votes
16answers
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 ...
70
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 ...
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 ...
63
votes
6answers
37k views
What is the best collation to use for MySQL (with PHP)
I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as ...
63
votes
21answers
3k views
When do you know it's time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was ...
62
votes
20answers
10k views
Mechanisms for tracking DB schema changes
What are the best methods for tracking and/or automating DB schema changes? Our team uses Subversion for version control and we've been able to automate some of our tasks this way (pushing builds up ...
56
votes
9answers
6k 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 ...
41
votes
2answers
2k views
Best way to code Achievements system
I'm thinking of the best way to design an achievements system for use on my site. The database structure can be found at MySQL: Best way to tell 3 or more consecutive records missing and this thread ...
39
votes
5answers
31k views
How to 'insert if not exists' in MySQL?
I started by googling, and found this article which talks about mutex tables.
I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the ...
35
votes
2answers
1k views
Why would Magento fail to save a customer after generating an ID?
I'm attempting to track down the cause of a rare bug (love those intermittent bugs) where a customer selects to Register at time of checkout, but when the order is completed, Magento somehow fails to ...
35
votes
9answers
852 views
Best practice to record large amount of hits into MySQL database
Well, this is the thing. Let's say that my future PHP CMS need to drive 500k visitors daily and I need to record them all in MySQL database (referrer, ip address, time etc.). This way I need to insert ...
32
votes
3answers
393 views
The dreaded 'keep me logged in' and session checking
So, I know this has been done to death but all the answers I've come across have been extremely confusing/contradicting each other or their explanations have been incomplete and I'm trying to keep up ...
32
votes
12answers
70k views
Format mysql datetime with php
I have a datetime column in mysql which I need to convert to mm/dd/yy H:M (AM/PM) using PHP.
31
votes
1answer
4k views
Formulas to Calculate Geo Proximity
I need to implement a Geo proximity search in my application but I'm very confused regarding the correct formula to use. After some searches in the Web and in StackOverflow I found that the solutions ...
31
votes
7answers
26k views
JSON encode MySQL results
How do I use the JSON_encode function with mysql query results, do I need to iterate through the rows or can I just apply it to the entire results object?
30
votes
4answers
16k views
MySQL Great Circle Distance (Haversine formula)
I've got a PHP script that gets Longitude and Latitude values...then inputs them into a MySQL query. I'd really like to make it solely MySQL.
Live site can be found at http://MotoListr.com
Here's ...
29
votes
3answers
5k views
Does mysql_real_escape_string() FULLY protect against SQL injection?
On http://www.justinshattuck.com/2007/01/18/mysql-injection-cheat-sheet/?akst_action=share-this , there is a section that claims you can bypass mysql_real_escape_string with certain Asian character ...
27
votes
6answers
801 views
How can I implement an “interesting tags” feature like that on Stack Overflow?
Check my other question with bounty:
http://stackoverflow.com/questions/3436287/finding-similar-number-patterns-in-table
I'm trying to implement an Interesting Tags feature. For reference, this is ...
27
votes
1answer
16k views
PHP + MySQL transactions examples
I really haven't found normal example of PHP file where MySQL transactions are being used. Can you show me simple example of that?
And one more question. I've already done a lot of programming and ...
27
votes
12answers
806 views
Optimizing queries for the next and previous element
I am looking for the best way to retrieve the next and previous records of a record without running a full query. I have a fully implemented solution in place, and would like to know whether there are ...
27
votes
6answers
4k views
PDO Prepared Statements
Is there a way to get the raw SQL string executed when calling PDOStatement::execute() on a prepared statement? For debugging purposes this would be extremely useful.
26
votes
4answers
488 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 ...
26
votes
13answers
48k views
Create a CSV File for a user in PHP
I have data in a MySQL database. I am sending the user a URL to get their data out as a CSV file.
I have the e-mailing of the link, MySQL query, etc. covered.
How can I, when they click the link, ...
25
votes
5answers
2k views
Someone has hacked my database - how did this guy do it?
Someone has hacked my database and has dropped the table :(.
In my PHP page there is one single query where I am using mysql_real_escape_string:
$db_host="sql2.netsons.com";
$db_name="xxx";
...
25
votes
5answers
841 views
“How the sausage is made” tour of apache/php/mysql interaction
I am having trouble understanding how apache/php/mysql stack works on a low level (including interaction with the browser). Is there a good description somewhere (a book, a website, etc) that will ...
24
votes
16answers
29k views
XAMPP and WAMP in the LAMP, whats the best?
We have got loads of options for php + MySQL + Apache combo... Which is the best pack among these ?
Lets confine our ideas to WAMP vs XAMPP, is there a better option to go for ?
I created an online ...
23
votes
2answers
231 views
Why do PHP and MySQL unix timestamps diverge on 1983-10-29?
I've been using PHP's strtotime and MySQL's UNIX_TIMESTAMP functions in my app, to convert dates into timestamps. PHP and MySQL are running on my local machine, and these functions generally return ...
23
votes
7answers
8k views
PHP PDO vs normal mysql_connect
Which one should be used php PDO or normal mysql_connect to execute database query through PHP.
Which one is faster?
One of the big benefits of PDO is that the interface is consistent across ...
22
votes
2answers
214 views
separate different version of a website
I want to make sure I want to optimize and make my site very easy to maintain for different version of my site.
I have few version of my site:
iphone/ipod/android etc...
ipad/tablets etc...
other ...
22
votes
9answers
2k views
Best practices for storing bank information in a database
Summary of answers:
Don't do it. The legal and financial implications will be disastrous. Look for established third party solutions or hire an expert. Never store any sensitive information on a ...
22
votes
5answers
20k views
How does “do something OR DIE()” work in PHP?
I'm writing a php app to access a MySQL database, and on a tutorial, it says something of the form
mysql_connect($host, $user, $pass) or die("could not connect");
How does PHP know that the ...
21
votes
7answers
216 views
Slow cronjobs on Cent OS 5
I have 1 cronjob that runs every 60 minutes but for some reason, recently, it is running slow.
Env: centos5 + apache2 + mysql5.5 + php 5.3.3 / raid 10/10k HDD / 16gig ram / 4 xeon processor
Here's ...
21
votes
6answers
521 views
What is worth spending time upfront when starting a new project
Update:
Great answers so far everyone! Each one has been really helpful in getting to the root of the problem and helping to make sure both my partner and I are on the same page. I think a lot of it ...
20
votes
16answers
802 views
How to find similarity between mySQL rows?
I am trying to create a script that finds a matching percentage between my table rows. For example my mySQL database in the table products contains the field name (indexed, FULLTEXT) with values like
...
20
votes
3answers
211 views
Arrays vs Tables (PHP/MySQL)
Meet Jimmy. He has made his new life goal to prove that Chocolate is the best ice cream flavor ever. For this he built a simple form with radio buttons and a text field for the name so he can send the ...
19
votes
4answers
724 views
Best way to implement permissions?
I'm creating a website in which there are projects, users, and permissions for each user or groups of users. What this is is a community collaboration tool, and I have 4 different permissions:
...
18
votes
5answers
487 views
Is there anything that can be put after the “ORDER BY” clause that can pose a security risk?
Basically, what I want to do is this:
mysql_query("SELECT ... FROM ... ORDER BY $_GET[order]")
They can obviously easily create a SQL error by putting non-sense in there, but mysql_query only ...
18
votes
5answers
6k views
Why doesn't MySQL support millisecond / microsecond precision?
So I just found the most frustrating bug ever in MySQL.
Apparently the TIMESTAMP field, and supporting functions do not support any greater precision than seconds!?
So I am using PHP and Doctrine, ...
18
votes
8answers
1k views
Database Structure Advice Needed
Im currently working on a site which will contain a products catalog. I am a little new to database design so I'm looking for advice on how best to do this. I am familiar with relational database ...
18
votes
23answers
4k views
What should every PHP programmer know?
I would like to be a PHP/MySQL programmer
What are the technologies that I must know?
Like:
Frameworks
IDEs
Template Engines
Ajax and CSS Frameworks
Please tell me the minimum requirements that ...
18
votes
7answers
7k views
Is there a way to do an “INSERT…ON DUPLICATE KEY UDPATE” in Zend Framework?
I would like to use ON DUPLICATE KEY UPDATE in Zend Framework, is this possible?
Example
INSERT INTO sometable (...)
VALUES (...)
ON DUPLICATE KEY UPDATE ...
18
votes
7answers
28k views
PHP code to convert a MySQL query to CSV [closed]
What is the most efficient way to convert a MySQL query to CSV in PHP please?
It would be best to avoid temp files as this reduces portability (dir paths and setting file-system permissions ...
17
votes
2answers
122 views
coupon code statistics
I have a system that allows users to enter coupons (for example like dell or amazon)
I want to know how much a coupon has been used so after 500 times the coupon is no longer valid.
The way I am ...
17
votes
5answers
894 views
Best way to store IP in database?
What is the best field type and length for storing IP addresses in a MySQL database?
What about for IPv6?
17
votes
12answers
661 views
Can something “bad” happen via img src?
I know, I know, title is quite bad, but I'll try to explain what I mean here. So, I ask my members to show their photos. They upload it somewhere, then paste their photos' URL into input and I save it ...
17
votes
10answers
2k views
Storing Credit Card Numbers in SESSION - ways around it?
I am well aware of PCI Compliance so don't need an earful about storing CC numbers (and especially CVV nums) within our company database during checkout process.
However, I want to be safe as ...
17
votes
4answers
1k views
Achievements / Badges system
I have been browsing this site for the answer but I'm still a little unsure how to plan a similar system in its database structure and implementation.
In PHP and MySQL it would be clear that some ...