Seriously, Both suPHP and FastCGI are very better.
But, FastCGI has security as well.

SuPHP
SuPHP is used on all of our Shared and Re-Seller server environments, as it is cPanel’s preferred PHP handler, and is noted as the most secure PHP handler. SuPHP works by running PHP as a CGI module on the server which separates each PHP processes under the user in which is running them.
Pros:
FCGI
Commonly known as Fast CGI, and is a higher performance version of the CGI PHP handler and is comparable to DSO.
Pros:
I picked FastCGI for PHP Handler. What do you think?
But, FastCGI has security as well.

SuPHP
SuPHP is used on all of our Shared and Re-Seller server environments, as it is cPanel’s preferred PHP handler, and is noted as the most secure PHP handler. SuPHP works by running PHP as a CGI module on the server which separates each PHP processes under the user in which is running them.
Pros:
- Default cPanel PHP Handler
- PHP processes run under the user in which it is owned to
- Uses SuExec to run the “forked” secure PHP processes
- Upload tool’s on your site will provide the proper ownership and permissions to files and updates
- PHP scripts are unable to be executed unless owned to the proper user
- Higher CPU usage
- Creates a new PHP process whenever PHP is needed to run
- World writeable files will be unable to be executed. (Files with permissions 777)
- No PHP Caching utility can be used (OPCache, APC, XCache, etc.)
FCGI
Commonly known as Fast CGI, and is a higher performance version of the CGI PHP handler and is comparable to DSO.
Pros:
- Low CPU consumption
- Run’s PHP processes as the cPanel user
- Ability to use Caching extensions
- Very similar to the DSO handler
- Able to work with Nginx and non-Apache webservers
- High memory consumption
- PHP is running as a constant open process, rather than opening when a PHP request comes to the server
I picked FastCGI for PHP Handler. What do you think?