Before getting into Node.js hype, read the following article.
Basically, Node.js HAS issues.
It's a server, but you can connect to MySQL via Node and send data to the user. There are many pitfalls, one of them being that you must know JS and you'll have to format your output via JS instead of PHP.
However, your bottleneck will almost never be PHP, unless you do some stuff that PHP wasn't designed for (like loading 1 million entries in an array and doing various searches using that array and what not).
What you'll find to be your bottleneck (in case of a busy website) is the HTTP server since you'll probably exceed memory due to each connection requiring certain amount of memory and of course - your DB will be (most likely) I/O bound (hdd bound).
In this whole process, PHP will be the least of your worries. Using programs written in C or for Node won't help speed things up, as you'll have to scale your database system - which is a whole different story (plus you'll need to scale your HTTP server setup).
Basically - stick with PHP/MySQL, forget about Node, at least for now.