Tagged Questions
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 ...
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 ...
60
votes
33answers
2k views
Features/functions that make your app more professional? Coding hobbyhorses
What features do you implement (how) in your PHP web applications because
you deem it "more professional" in some way? Or do you have personal nitpicks
and code hobbyhorses, specifically small things ...
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 ...
55
votes
12answers
10k views
Programmatically access currency exchange rates
I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert ...
53
votes
17answers
3k views
Pre-installed Linux for Web Developers?
Does anybody know an ISO image of a up-to-date Linux distribution aimed at web developers with one, some or all of the following features:
LAMP stack readily set up (Readily installed Apache 2, ...
52
votes
13answers
13k views
What is your preferred php deployment strategy?
I'm beginning a new project in PHP and I'd love to get some feedback from other developers on their preferred strategy for PHP deployment. I'd love to automate things a bit so that once changes are ...
45
votes
12answers
2k views
What is md5() for?
I was reading this tutorial for a simple PHP login system.
In the end it recommends that you should encrypt your password using md5().
Though I know this is a beginners' tutorial, and you shouldn't ...
40
votes
23answers
3k views
Why do you not use C for your web apps?
I was having a look at a few different web servers this morning when I came across G-WAN. As I understand, its a web server written in C and you have to make use of it by writing your websites/webapps ...
30
votes
18answers
3k views
Smarty, the best choice?
We are developing a huge website, it will get lots of traffic, right now we are analyzing our options and Smarty looks nice but i have seen lots of flames about this, some love it some hate it.
What ...
29
votes
17answers
16k views
PHP vs JSP: Which Should I Learn? [closed]
I already have some knowledge in Java and I was looking to start writing scripts for web development. I was wondering if I should just learn .jsp since I already have a Java background or is PHP that ...
27
votes
20answers
3k views
What are the benefits of OO programming? Will it help me write better code?
I'm a PHPer, and am not writing object-oriented code.
What are the advantages of OO over procedural code, and where can I learn how to apply these ideas to PHP?
25
votes
7answers
773 views
How should I organize a general-purpose programming library's directory structure?
I've been writing my own general-purpose PHP library for a while and I'm thinking about how to organize the directory structure, but I wanted to get people's ideas before I formalized the directory ...
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
6answers
8k views
Test Driven Development in PHP
I am a web-developer working in PHP. I have some limited experience with using Test Driven Development in C# desktop applications. In that case we used nUnit for the unit testing framework.
I would ...
22
votes
2answers
658 views
SVN Web Development Workflow
I've read through many of the questions here on SO relating to this issue, but I can't really find any good advice that fits our situation. I inherited this work flow, and I'm trying to make it ...
22
votes
16answers
9k views
ColdFusion vs PHP [closed]
Can anyone share with me (without fervent evangelism, please) any comparative experiences you might have with regard to ColdFusion and PHP in developing internal enterprise browser-based applications? ...
22
votes
19answers
7k views
Which PHP Framework will get me to a usable UI the fastest?
There are a lot of php mvc frameworks out there now. Which one will get me to a frontend, a backend, a user system with permissions the fastest.
I like the look of things like Symfony or Codeigniter ...
19
votes
5answers
3k views
PHP 6.0 - Roadmap?
With the recent announcement that PHP 6 development has been halted, I'm confused as to what the PHP 5.x and 6.x road map includes.
The current version of PHP is 5.3.2.
There were quite a few ...
19
votes
6answers
6k views
PHP: Does $_SERVER['HTTP_X_REQUESTED_WITH'] exist or not?
All over the Internet, included even here at StackOverlow, people state that a good way to check if a request is AJAX or not is to do the following:
if (strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) ...
19
votes
6answers
841 views
Online Code Coloring Service
I would like to know if anyone knows of an online service where we paste the code and it generates back the colored html source code for that code. It could be PHP, HTML, CSS, Javascript, C, Java.
...
19
votes
3answers
6k views
How to prevent XSS with HTML/PHP?
How do I prevent XSS (cross-site scripting) using just HTML and PHP?
I've seen numerous other posts on this topic but I have not found an article that clear and concisely states how to actually ...
19
votes
6answers
2k views
PHP: Is there any particular difference between intval and (int)?
Is there any particular difference between intval and (int)?
Example:
$product_id = intval($_GET['pid']);
$product_id = (int) $_GET['pid'];
Is there any particular difference between above two ...
19
votes
18answers
1k views
Is there a high-level language for the web?
Preamble
To build dynamic web-sites, we have to master at least four languages:
HTML for the structure of web pages
CSS for layout and design
JavaScript for interactivity
A language for business ...
18
votes
12answers
23k views
Best pdf generator in PHP , mpdf or fpdf? [closed]
Which is th best pdf generator for php,
i know some opensources libs mpdf and fpdf..
Thanx in advance
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 ...
17
votes
7answers
855 views
Why is PHP apt for high-traffic websites?
I was surprised to learn today that PHP is used widely in high-traffic websites.
I always thought that PHP is not strong in terms of performance, being a dynamic, scripting language (e.g. compared ...
16
votes
4answers
2k views
Difference between array_map, array_walk and array_filter
What exactly is the the difference between array_map, array_walk and array_filter. What I could see from documentation is that you could pass a callback function to perform an action on the supplied ...
15
votes
5answers
352 views
What is the safest way of passing arguments from server-side PHP to client-size JavaScript
In my application I rely heavily on JavaScript to enhance the user interface, but all of the data comes from a database and is processed by PHP. By default I use 'echo' statements to substitute the ...
15
votes
8answers
5k views
Zend Framework forms, decorators and validation: should I go back to plain HTML?
I am currently working on a pretty large application which contains a lot of forms.
Up to this moment, I have always been writing my forms by hand and writing my own validation logic, but I have ...
15
votes
4answers
4k views
Reading a Git repository, without Git
I'm researching the idea of building a super-small (preferably PHP) web app, which will serve (among other things) as a minimal front-end to a git repository.
Any library/article for reading a git ...
15
votes
6answers
2k views
Combining Lisp and PHP code in the same application
At the moment I use PHP for almost everything I develop for the Web but its linguistic limitations are starting to annoy me. However, as I developed some practices and maintain some PHP libraries that ...
15
votes
7answers
3k views
Best practices in PHP and MySQL with international strings
It often happens that characters such as é gets transformed to é, even though the collation for the MySQL DB, table and field is set to utf8_general_ci. The encoding in the Content-Type for the page ...
15
votes
19answers
2k views
What is your preferred tool stack for PHP development in the Windows Environment?
I have been developing basic web sites for awhile now with some PHP thrown in for getting dynamic stuff done. However, I recently decided that it was time I got my hands a little dirtier so I wanted ...
14
votes
6answers
2k views
How can I improve this PHP/MySQL news feed?
Let me start right off the bat by saying that I know this is not the best solution. I know it's kludgy and a hack of a feature. But that's why I'm here!
This question/work builds off some discussion ...
14
votes
9answers
970 views
How to generate 63 million prize codes
I am trying to come up with a "smart" and "secure" way of generating about 63million unique codes to be used in a competition. The codes will be about 10 characters long.
Has anyone done anything ...
14
votes
19answers
2k views
Torn Between learning PHP [insert framework here] and Ruby on Rails
Here's my situation: I'm an ASP.NET Developer first and foremost. That's not going to change anytime soon. I have built my small business on it. With that being said, I'm looking to add other ...
13
votes
2answers
474 views
NetBeans: PHP Syntax Checking
According to a poll here on StackOverflow, NetBeans is the best PHP IDE available. This is all fine and good, except for one thing: It appears to be terrible at checking syntax. I'm sure I must be ...
13
votes
9answers
811 views
Web application admin generators
Since Symfony 1.x's admin generator, I found this kind of tool really useful to prototype applications, show something very quickly to customers etc.
Now for Symfony2, admin generator does not seems ...
13
votes
8answers
2k views
PHP Form Security With Referer
I'm putting together a site that will make itself available for user input. I was wondering if writing a function like:
if(getenv("HTTP_REFERER") != 'http://www.myURL.com/submitArea'){
...
13
votes
7answers
280 views
Reuse, Rewrite, or Refactor?
At work I inherited development of a PHP-based Web site after the consultant who originally produced it bailed out and left without a trace. Literally half of the code is ripped from online tutorials, ...
13
votes
15answers
2k views
Top techniques to avoid 'data scraping' from a website database
I am setting up a site using PHP and MySQL that is essentially just a web front-end to an existing database. Understandably my client is very keen to prevent anyone from being able to make a copy of ...
12
votes
9answers
432 views
Deliverables for PHP web designer
I'm in the design phase of a medium-sized PHP web application (not a static website). Since I'm a programmer with the creativity of an eggplant I'd like to contract with a freelancer to design the ...
12
votes
12answers
721 views
When is a PHP project too small for a framework?
I'm about to start on a small, static website project: no database or CMS required. Basically, a brochure website.
I used the CodeIgniter framework recently to develop a full-blown web application, ...
12
votes
8answers
5k views
How useful is PHP CodeSniffer? Code Standards Enforcement in General?
I'm dabbling with the idea of setting up PHP CodeSniffer on our continuous integration server in an effort to improve the quality of our code-base. After reading the documentation I'm very excited ...
12
votes
8answers
12k views
How do you make websites with Java?
This might be a really trivial question, but I've been writing Java programs at my school. But I just found out that I can create websites with Java as well. How can I do that? Any good ...
11
votes
6answers
217 views
Embed python/dsl for scripting in an PHP web application
I'm developing an web based application written in PHP5, which basically is an UI on top of a database. To give users a more flexible tool I want to embed a scripting language, so they can do more ...
11
votes
6answers
2k views
Preventing form resubmission
2 pages. Page one contains an HTML form. Page two - the code that handles the form's data.
The form in page one is submitted and the browser is redirected to page two. Page two handles the data. Now ...
11
votes
4answers
1k views
Tiny PHP “standalone” server (or framework) for local debug without Apache/Nginx/Lighttpd/etc
There's manage.py runserver in Django or ruby script/server in Ruby on Rails — those familiar with one of those frameworks should already get the idea what I'm looking for. They run tiny "standalone" ...
11
votes
3answers
1k views
How to store Markdown comments
I want to use Markdown for my website's commenting system but I have stumbled upon the following problem: What should I store in the database - the original comment in Markdown, the parsed comment in ...