You must already know about GitHub specially if you are a Software Engineer. Ok, that’s great to know that you know. Now let’s talk about as a PHP developer how we can use GitHub actions or workflows (group of actions) to automate our CI job. It was very much expected feature from GitHub. What is GitHub actions & workflow? You got me right. I need to tell you this first otherwise this article seems useless to you unless you have …
Tag: PHP
If you are familiar source code version controlling you may heard about GitLab. GitLab is a wonderful ecosystem for any software engineering project to track codes, integrating CI/CD, issue tracking, etc. In recent days GitLab CI became a demanding skills in your resume. So let’s talk about GitLab CI/CD for PHP developers specifically. What is CI? CI is the short form of Continuous Integration. You are continuously and regularly updating your codebase, adding new features by yourself alone or with …
Symfony is one of the best PHP framework for developers who want to build enterprise grade web application or any web services. Besides Symfony, Docker is one of the most necessary tooling every developers need. Docker containerized your App. So the question is, what can be the best way to run Symfony web application on Docker container? Since Symfony 5.x got released I tested it for one of our applications that I have developed. You have to remember, any kinds …
Since from the beginning of my career as a professional PHP programmer, I fell in love with web scraping. And I have built so many tools (may be more than 20) that collect data and make it re-usable easily. And suddenly I got an idea to build a PHP script to get DSE share price in PHP. So here it comes. I built it. It was an easy task but very useful for developer to display and use DSE, CSE …
CSV is a very important file types to save mass amount of similar types data. Sometime to save those data from CSV file in PHP is an important task. So I am sharing a complete script to read data from CSV and save it in your data with PHP & PDO. Write your comments if this works for you.