vote up 208 vote down star
156

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 curious. What am I missing? What makes PHP a good language?

Here are my reasons for disliking it:

  • PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

  • The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.

  • A lack of consideration in redesign. The above deprecation eliminated the ability to, in many cases, provide default keyword values for functions. They fixed this in PHP 5, but they deprecated the pass-by-reference in PHP 4!

  • Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!

  • Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.

  • Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.

  • Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.

  • PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.

  • PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

Worst of all, PHP convinces people that designing web applications is easy. And it does indeed make much of the effort involved much easier. But the fact is, designing a web application that is both secure and efficient is a very difficult task.

By convincing so many to take up programming, PHP has taught an entire subgroup of programmers bad habits and bad design. It's given them access to capabilities that they lack the understanding to use safely. This has led to PHP's reputation as being insecure.

(However, I will readily admit that PHP is no more or less secure than any other web programming language.)

What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language that's spawning poor programmers.

So convince me otherwise!

flag
21  
There's no satisfying answer to your question. I can substitute any other language/tool for PHP in your question. – Robert S. Nov 21 '08 at 16:21
3  
It is horrible. – Andrew Medico Nov 21 '08 at 17:57
19  
it is horrible, but that doesn't matter. totally irrelevant. – Jeff Atwood Nov 22 '08 at 17:26
7  
Every symbol needs a name in the lexer/parser. T_PAAMAYIM_NEKUDOTAYIM refers to the :: symbol. It's a conceit by an Israeli developer from long ago - and it means "double-colon". :-) – staticsan Nov 25 '08 at 0:18
16  
To all people who use the "but it works" argument: One can write programs in brainfuck, one can write websites using c++, one can write GUI apps using assembler,... and guess what, it works! It's one of the most STUPID arguments, sorry. – ivan_ivanovich_ivanoff Apr 29 at 22:01
show 29 more comments

64 Answers

vote up 2 vote down

Two words, It works!

link|flag
vote up 1 vote down

For me, PHP is certainly not the best thing since sliced bread. However, unlike ASP, it tends to solve my problems.

link|flag
show 2 more comments
vote up 15 vote down

The bottom line is that PHP is (like every other language) nothing but a tool. Every job has a tool that suits it. PHP is greatly suited for quick, agile tasks that need to be done NOW.

In the real world, unfortunately, managers run the show. If a client needs a contact form, I can bang that out in 30 minutes using PHP (and even design it "properly" using an MVC architecture). Or, if I was a novice (and I say that in a loving way), I could wite the same form using ugly code, that works just as well.

Now, I started hating PHP after using it for several years for a few of the reasons listed above. Mostly, I disliked it's OOP implementation and hated the fact it was case insensitive.

As I look back on it though, I think the major problem isn't the language, but inexperienced programmers who are hired to write in it. It's the "cleaning up spilt milk" problem. About 90% of the legacy PHP code I've had to alter or maintain has been TERRIBLY written. It's not the languages fault, it's the inexperienced (or lazy) coder's fault. They took the hammer (PHP), and instead of simply driving a nail into a wall with it, they cooked spaghetti with it (successfully).

These days, I have been writing code in VBScript and Perl (NOT by choice, but gotta make a living). After working with those two nonsensical and disheveled languages, it really put PHP into perspective for me. I MISS PHP. I didn't realize what I had till I lost it. Ever try to get the size of an array stored in a hash reference in Perl? I did. Took 2 hours and I didn't solve the problem. I was forced to do a hack. In PHP, I'd simply use count() and TA DAH! There is the size of the array (which is actually a hash in PHP but that's out of the scope of what I'm trying to say).

Does the language need improvements? Yes. Does the language have a poor governing body? Yes. But what are it's strong points? It's pretty simple:

  1. EXCELLENT documentation
  2. Quick turn-around time for development
  3. A familiar, C style syntax

So in reality, It's not the language itself that's absolutely terrible, but the ironic fact that it was designed to be so quick and dirty to develop with, that it attracts poor programmers with poor programming practices.

It's ease of use is a double edged sword. It allows you to quickly write good code, just as easily as it allows you to quickly write bad code. So don't blame the gun, blame the guy who pulled the trigger.

But I'll tell ya one thing, If I had a choice between writing a web app in Perl through CGI, or using PHP; I'd use PHP in a HEARTBEAT.

link|flag
show 4 more comments
vote up 0 vote down

You really need to read Adman Bosworth's talk to iscoc04. or Computer Scientists vs. Developers (in Joel's book Best Software Writing vol 1).

Other people have given a point by point rebuttal, but to take just one of your points -weak typing. Strong typing is taught as the one true way, but weakly typed languages tend to succeed in the market place - C vs Pascal etc. Java and its knock-offs are the only strongly typed languages that have succeeded.

Type checking just isn't that useful in practice, and it gets in the way more often than it actually helps.

Developers like PHP because it's sloppy and forgiving, Computer Scientists hate it for the same reason.

link|flag
show 3 more comments
vote up 2 vote down

PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

I heard Rasmus explain this at a conference. In the beginning he simply choose to use the same function names and parameters as the underlying C libraries. If you know the underlying libraries then you know what something probably will be in PHP.

link|flag
vote up 1 vote down
  • yahoo
  • facebook
  • flickr
  • wikipedia
  • wordpress

Good enough for ya?

link|flag
1  
andrei, what are the good quality sites? (non php i assume?) – gnomixa Feb 13 at 19:58
show 1 more comment
vote up 1 vote down

i like php, using one of the many available mvc frameworks addresses most of issues pertaining to poor programming practices. you can use zend framework or one of my personal favorites the kohana framework written exclusively for php5.

link|flag
vote up 6 vote down

I'll start by saying "a great developer can build quality software in any language", and "there are a lot of not-great php developers"...

PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

Sure, but any language that evolves runs into these kinds of issues. They're easily resolved by using an IDE such as "Zend Studio for Eclipse", which will auto-complete things for you, and hint at the right order for parameters.

The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions. This created a nightmare for anyone doing, say, function callbacks.

Python just launched version 3 of itself, totally breaking backward compatibility. At least PHP took a long time to do it, and they still support the 4.x branch that does it the old way.

Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!

I agree that backslash was a WTF moment.

Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.

It can be very handy sometimes, and it can bit you in the butt at other times. The key is to validate or typecast your data before you use it.

Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.

I've never had a problem with it... of course, I've probably only used it once a year over the past 10 years. Most small-to-medium sized web apps just aren't complicated enough to require it.

Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.

Most people I know are case insensitive, too. They can parse ALL CAPS and all lowers, and MixEd.

PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.

I totally disagree, and I'm sure everyone at www.smarty.net would disagree, too. There are lots of templating systems written in/for PHP... BUT you have to have discipline when you use them. I would argue that being a good PHP developer requires more discipline than it does in many other languages specifically because PHP affords you so many opportunities to "do it your way".

PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

PHP runs a lot of sites, and most of them don't use caching. I don't think it's as 'abysmal' as you say it is.

Worst of all, PHP convinces people that designing web applications is easy.

That's your "worst of all" ?? I think that's a great thing. It gets more people interested in computers & programming in general. It's a great "gateway language" that could lead to more hardcore languages in the future ;)

designing a web application that is both secure and efficient is a very difficult task.

It's a difficult task in any language.

By convincing so many to take up programming, PHP has taught an entire subgroup of programmers bad habits and bad design

Your premise is flawed, good sir. Convincing people to take up programming is entirely different from teaching bad habits & bad design. Either of those things can and does happen with any language.

It's given them access to capabilities that they lack the understanding to use safely.

How many Americans own guns? How many of them have had "firearm safety" training? How many of them think it's their right to own a gun, regardless? It's up to the person to understand the safety requirements of the tools they choose to use. It's also up to their employers to hire people who are trained & certified.

This has led to PHP's reputation as being insecure.

The sheer volume of "php programmers" has helped that, too. I'm sure the percentage of python & ruby programmers who "suck" is similar to the percentage of php programmers who suck... it's just that there are so many more php programmers, that the same percentage yields a much higher volume. Of course, it also means there are more awesome php programmers... they're just harder to find floating around in a sea of n00bz.

What is it that I'm missing about PHP? I'm seeing an organically-grown, poorly-managed mess of a language

Ahhh, organically-grown. So ripe. So tasty. I think you've hit the nail on the head right there. As soon as a fad hits the net, there are 10 PHP classes for accessing it, modifying it, and remixing it into your own monkey. Some suck, some are great. Either way they're there for you to play with, on Day Zero, and that's fun and exciting. PHP is nothing if not all about Fun & Exciting.

link|flag
show 1 more comment
vote up 2 vote down

It does a good job making it easy to create dynamic markup. I'd rather read naive PHP rendering code than something where all the markup is locked up in non-syntax-highlighted strings in print statements.

It performs well in a default install, in contrast to most other things.

link|flag
vote up 1 vote down

I'm not at all a trained programmer. I took Java classes and code regularly in AS 2,3 and PHP.

I did, however, program lots of things in Basic 20 years ago so i'm at least somewhat a veteran.

  1. PHP was easy to learn and feel like I did something useful.
  2. PHP has a huge community that helped me grow as a programmer.
  3. After building x number of apps, I no longer cared about "doing something useful" I cared about doing the same useful things "better" and more "elegantly" and PHP gave me enough rope to hang myself or validate my feelings of being a decent programmer.

I don't prefer PHP to anything else as I only have a limited knowledge of other items. But I do like PHP because I now know the difference between a good programmer and a bad programmer and I wouldn't have this experience or knowledge if I wasn't allowed to be a bad programmer first.

link|flag
vote up 7 vote down

PHP has inconsistent naming of built-in and library functions. Predictable naming patterns are important in any design.

PHP exposes the function signatures of all the low-level libraries that it uses. Do you make this same complaint about C or C++? You should because those are the same function calls and libraries. You have the freedom to develop whatever abstractions you want over top of these low-level calls -- you aren't limited a specific high-level toolkit.

The PHP developers constantly deprecate built-in functions and lower-level functionality. A good example is when they deprecated pass-by-reference for functions.

They depreciated call time pass-by-reference which no other language has ever had. Regular pass-by-reference still exists and always will. I feel bad for the PHP developers, they try and improve the language and still get dumped on because some people don't know how to read.

Poor execution of name spaces (formerly no name spaces at all). Now that name spaces exist, what do we use as the dereference character? Backslash! The character used universally for escaping, even in PHP!

Agreed. But that pain hasn't even been released yet. Lets hope they change their mind. If anything, this particular issue has got me looking into alternative languages. But I have a lot good object-oriented code written in PHP that it's hard to change.

Overly-broad implicit type conversion leads to bugs. I have no problem with implicit conversions of, say, float to integer or back again. But PHP (last I checked) will happily attempt to magically convert an array to an integer.

I've got hundreds of thousands of lines of code in PHP and I don't find the implicit conversions to be a problem. It will not happily attempt to magically convert an array to an integer (unless you explicitly cast it).

Poor recursion performance. Recursion is a fundamentally important tool for writing in any language; it can make complex algorithms far simpler. Poor support is inexcusable.

I'll give you this one; but if you're written complex algorithms in PHP then you're using the wrong tool -- plain and simple. PHP scripts aren't designed to run for long periods (in fact, the shorter the better for responsiveness). This is like complaining that you SUV uses to much gas or your Smartcar doesn't have enough room for 2x4's.

Functions are case insensitive. I have no idea what they were thinking on this one. A programming language is a way to specify behavior to both a computer and a reader of the code without ambiguity. Case insensitivity introduces much ambiguity.

They are case-insensitive because HTML tags were, at one time, case-insensitive. But your argument is stupid. If functions are case-sensitive, you're still introducing ambiguity: now you have a function named bob() and Bob() that do two entirely different things. In PHP, that sort of madness isn't allowed. If you want consistency in naming, be consistent. PHP doesn't stop you.

PHP encourages (practically requires) a coupling of processing with presentation. Yes, you can write PHP that doesn't do so, but it's actually easier to write code in the incorrect (from a sound design perspective) manner.

This is entirely wrong. It does not practically require coupling processing and presentation. I've been coding in PHP for decades and while I did start by making them together (everybody did -- I came from classic ASP which does the same thing).

I think of PHP's functionality in this regard as the same as Python's immediate mode. You can fire up Python in a shell and just start typing commands and getting results. PHP is a web based languages, so this is it's equivalent of that functionality. When I need to quickly test something, I can bang out a quick script instantly and don't require bringing in a big framework (as I would with any other language) to get a result.

PHP performance is abysmal without caching. Does anyone sell a commercial caching product for PHP? Oh, look, the designers of PHP do.

Abysmal? Please. Take your exaggerations elsewhere. PHP is plenty fast enough without caching for 99% of what it's used for. For that remaining 1%, there are plenty of free code caches available (I use e-accelerator) and it will be included as standard in PHP6.

Are we done with this tired topic now?

link|flag
show 1 more comment
vote up 1 vote down

PHP has many drawbacks, if you think this is a problem, don't use it.

I was aware of these and used it anyway for some projects. In practice, problems don't actually prevent the writing of good code, they simply make it very slightly harder. And there are a lot of workarounds.

I don't get your issue about function references; PHP does not support anonymous functions therefore function references are irrelevant, just call functions by name which a callback can do (No, really, create_function just creates a named function with a dynamic name. Last time I checked there was no way to deallocate these).

PHP is, by and large, so stupid that it forces you to think about how things are actually going to be done rather than relying on some underlying magic (e.g. all the voodoo from ASPNET) to "just work", e.g. sessions aren't automatic and implicitly available, you need to start them.

This can be a good thing as it means that all of the things you want to do, you have to actually do.

link|flag
vote up 1 vote down

PHP's one of the biggest problems are novices who can't take the time to do validation etc and this leads to security problems which causes bad imago for PHP in the long run. It's a bit too easy. In one forum there were same time topics titled "Python: How I can handle errors?" and "PHP: How I can hide errors?". Pretty much sums it up. People just glue PHP apps together and then go with it.

As a PHP programmer and hosting provider myself for 8+ years I'd say PHP's good points are it's vast collection of libraries and classes and that it's fast. I can run hundreds of small pretty busy sites compared to Java based memory and CPU hogs. I've looked into Django and Ruby on Rails but libraries what you need just aren't there.

I've also seen that PHP is fading but frameworks like Symphony and Zend Framework may be these future saviours of PHP.

link|flag
vote up 1 vote down

This is what is said in the book XSS attacks (syngress) by : Jeremiah Grossman -
Robert “RSnake” Hansen - Petko “pdp” D. Petkov - Anton Rager

Another nasty thing that can be performed by CSRF is Hypertext Preprocessor (PHP) include attacks. PHP is a programming language that has increased in popularity over the last several years. Still, while it is an extremely useful and widely used programming language, it also tends to be adopted by people who have little or no knowledge of security

so if php is that simple, it would be a big problem since everyone will just mess up with things on the wild!

link|flag
vote up 1 vote down

The above questions are exactly why I like it. Every single reason!

Every point in your post is about how PHP will not organize your code for you.

I'm proactive, and I need a level of organization no code will give me out of the box. I'd rather a language that stays out of my way and let's me enforce good program design with actual design, like pencil and paper planning design.

And as for teaching beginners bad habbits. you can't prevent bad habits from the language level nor can you implement good design from the language level.

link|flag
vote up 1 vote down

PHP doesn't need defending; why should I? ;)

link|flag
vote up 2 vote down

1) It's Free. 2) It's easier to maintain then PERL

link|flag
vote up 0 vote down

Coz all the chicks 'digg' it? LOL no, seriously, the (www) world would be a very boring assed place if PHP wasn't around.

PHP is an exceptionally good language, if you know how to use it properly. Just because you don't snap your fingers and wait for the computer to build the code for you, doesn't make it a horrible language. PHP makes you think, makes you work and makes you learn. I absolutely love it and have no idea what I would've done without it.. :)

link|flag
show 1 more comment
vote up 1 vote down

I know this is probably dead and gone, but I cannot resist.

Something that needs to be remembered, and was briefly mentioned beforehand, is that you cannot compare PHP to just any language. People tend to use the term "programming language" loosely without giving it much thought sometimes I think. While all languages could be grouped as a "programming language" in a broad sense, not all "programming languages" are equal (Yes - an owl and a ostrich are both birds,but they certainly are very different for different environments).

A language is designed to solve a particular problem: Basic was created to program hobby computers back in the day, PHP was created to make web pages,JavaScript to help with Java Applets in the Netscape Browser. Each one was created with a different purpose in mind, and so has different characteristics to meet that problem, and operates in a different environment.

Remember, PHP was designed in the beginning to be a simple language for making web pages, nothing else. So it is not going to have the same features of a language such as C++ or Basic that was designed for computer programming, or JavaScript for client side web scripting. Yes, compare PHP to Ruby on Rails, Python, ASP/ASP.NET, but don't compare it broadly to all the other languages when they all were not created for the same purpose.

link|flag
show 1 more comment
vote up -1 vote down

in my opinion.

i love it because the code is updated very frequently by the general public rather than employees of a company (who can care less).

one language i really hate is asp,asp.net etc.. anything made by microsoft is garbage. the code that visual studio generates is a mess of blob. and since it forcefully operates on a windows makes it even more insecure and crappy.

php is universal. it can run from a window,linux,osx

wherease asp,asp.net only run on windows.

link|flag
vote up -4 vote down

I'm surprised that the thing which infuriates me the most about PHP doesn't seem to be mentioned in the question or any of the answers: its scoping model.

It's infuriating to me that this doesn't work:

function outer() {
    $foo = 'bar';
    inner();
}
function inner() {
    doSomethingWith($foo);
}

$foo has not been garbage-collected—for chrissake it's still available after inner(), within outer(). It's technically still available within inner() if calling inner() triggers an error! Why should it need to be explicitly passed as an argument, or worse part of the global scope, to be accessible within inner()?

link|flag
2  
You think that's a problem with PHP?! There's a truckload of trouble waiting for you if you'd work in a language that would support it -- information hiding would be gone, creating a huge tangled mess of interdependencies, e.g. library code could (unknowingly) change the way your methods work. Good luck debugging that. By putting variables in arguments, at least you know that the function only works on globals and those arguments (and only if passed by reference). – Lennaert Jul 16 at 11:22
show 1 more comment
vote up 1 vote down
  1. you can did things faster in php than in other languages (say java, asp, etc). I know that some people write bad codes with php (lots of people) but afaik some of them are not computer science people. they just common people and they can learn php easily without bothering about OOP complexity.
  2. php is so small .. you can have portable one as well (use xampp for example compare to tomcat,glasfish etc that need java to be installed first and then set path etc ... ).
  3. numbers will speak louder :D ... there are lots of people using php than other languages.

I did my projects since 5 year ago using php and my skill was improved by reading some codes and using frameworks. I also using groovy and grails for web applications development since my client require me to use java ;)

how about "asking" google trends ?link text

alt text

PHP still loved by most people... asp.net comes next.

link|flag
show 1 more comment
vote up 3 vote down

I don't object to the statement that PHP is horrible. It has a lot of problems which were all mentioned in the question...

...BUT

  • has all the features you'd expect from a C/C++ heritage (it's very familiar)
  • it's free
  • very easy to learn
  • lets you quickly produce results
  • is extremely well documented
  • has a HUGE fanbase and
  • got a good amount of WTFs that keep you on your toes ;-)

So if you like to program something with quick results (and if your code is clean and you plan ahead you won't get into trouble), don't have a lot of money for software licences, (and/or are inexperienced with or still learning PHP) you can't go wrong.

PS. I really like PHP and have used it succesfully for 10+ years. Sometimes you just don't want to solve a problem with the overhead of some languages like Java etc.

link|flag
vote up 2 vote down

The php manual (i prefer the previous layout for function reference) is the clearest documentation i have ever seen, and php.net for the user contributed notes against each function/topic Genius!

Easy to write a mess of code, but easy to look up the finer points of the language also for an experienced programmer.

$obj = (object) array('property' => $value);

Lush, i love some of the little unused corners of this language

link|flag
vote up 0 vote down

I think PHP gets some rabid, fanatical defense for the same reason most languages get this treatment. It is often the first language learned by a new programmer, and this opinion is held as long as that programmer still hasn't been forced to learn more languages.

PHP really is good enough for what these programmers are using it for, to put up a website and give it some brains. It supports enough kinds of programming that it doesn't really hinder them from expressing their code. And significantly, it doesn't look anything like the languages other folks are telling them to learn instead.

The converse of this also applies equally. PHP is strongly hated by folks that learned several other languages first. It lacks the purity of lisp. It lacks the clarity of Python. It lacks the ecosystem of Java. It lacks the performance of C++. And so on. It doesn't really offer much over these languages, for the general tasks these languages are often used. Of course, while correct, they are missing a key point. It's very easy to get free web-app hosting for your favorite language, so long as your favorite language is PHP.

link|flag
vote up 1 vote down

Yes, those may be all drawbacks for PHP and I can't wave all of them away, but in choosing a web programming language, here's some of the pros that put PHP ahead of the pack in my book that haven't been mentioned yet:

  • Direct access to GD image manipulation from the source code. ASP could pull in ActiveX components to manipulate/output graphics, but PHP allows native manipulation of image canvasses, and can create image output rather than text/HTML.
  • One programming language usable in CLI/shell scripting and web-based scripting. If you're a new programmer, learning this one language gives you a leg up on both dynamic website creation and shell script automation.
  • Smarty Template engine: Yes, PHP lends itself to combine the display of a page with the processing code, but the same company that designed PHP designed a template system to go with it. Plus having the ability to combine the 'View' with the 'Controller' allows for rapid prototyping/debugging in certain situations.
link|flag
vote up 1 vote down

It's not so much that the language is terrible, but that it has a tendency to attract those people who want to learn language "X" in 24 hours. What happens then is that you have people who (mostly) read a (intro) book on PHP programming and think they've completely mastered all the ins and outs of the language. Consequently, I think you have more of a glut of bad PHP programmers than anything else.

link|flag
vote up 2 vote down

I like PHP because it isn't ASP.

link|flag
vote up 1 vote down

PHP is what I write in most. And it is shit, you are right :)

But, it's getting better. And there are many reasons why people would want to use it. Especially those learning a language for the first time. :)

link|flag
vote up 0 vote down

In Perl, it's very easy to get a size of an array stored in a hash reference:

my %h = ('easy'=>[1,2,4,5]);
$size = @{$h{easy}};   # gives the size...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.