Category: PHP

Yii2 : Retrieve multiple result set from stored procedure

Recently got chance to work on one Yii2 project, and where I encounter the situation where need to fetched multiple result set from stored procedure. I'm not experienced in Yii framework, so it was difficult to achieve easily. I googled but didn't get any proper solutions; So after some search and R&D, I achieve this … Continue reading Yii2 : Retrieve multiple result set from stored procedure

PHP + SFTP : How to connect SFTP Server using PHP (WAMP)? (upload or download files)

In one of my project, we came to the situation where needed to move/copy and download files to/from SFTP (SSH File Transfer Protocol or Secure File Transfer Protocol) server. That was first time when we were worked with SFTP server, So we started with google and after some trial & error we found that its simple … Continue reading PHP + SFTP : How to connect SFTP Server using PHP (WAMP)? (upload or download files)

PHP + SSH2 : How to enable SSH2 extension in PHP (WAMP)?

To connect SFTP (SSH File Transfer Protocol or Secure File Transfer Protocol) server from PHP (WAMP SERVER), first we have to enable SSH2 extension which is not available (by default) with WAMP server. When I start with this, I got multiple solutions from google and it takes much time to find exact workable one. So … Continue reading PHP + SSH2 : How to enable SSH2 extension in PHP (WAMP)?