In this article, we are going to teach you how you can view your database if you only have been given access to FTP or SFTP. phpMyAdmin can easily be accessed from cPanel but in this tutorial, we will show you how you can view the database without the cPanel access. If you are working …
Read More “View database with FTP or SFTP – Core PHP”
Demo In this article, we will teach you how you can implement a comments and replies feature in your website. If you are running a blog, or have a portfolio or a ticket booking website. The list goes on, you want to have an option to gather the opinions, reviews and suggestions from your users. …
Read More “Comments and replies – PHP & MySQL”
Learn how to create a working contact us form in PHP and MySQL. We will show a simple form in HTML. It will send the request to the PHP server. And PHP will store the form fields in MySQL database. Demo Almost every website has a page from where visitors can interact with the administrator …
Read More “Contact us form – PHP & MySQL”
In this article, we are going to teach you how you can create a dynamic custom carousel. If you are a web developer, you might have already came across with bootstrap carousel, which is basically a slider. Although, it shows you the functionality to show slides, move next/previous and many more. But nothing gives you …
Read More “Dynamic custom carousel – HTML & Javascript”
A movie ticket booking website is created in PHP and MySQL following the principles of Object-Oriented Programming (OOP) and Model-View-Controller (MVC). Google Adsense supported. CSRF (Cross-site Request Forgery) is protected. Features Free Premium User authentication Yes Yes Admin login Yes Yes Add, edit, and delete categories Yes Yes Add, edit, and delete movies Yes Yes …
Read More “Movie ticket booking website – PHP and MySQL”
In this tutorial, we are going to teach you how you can get donations in your WordPress site for non-profit organizations using Stripe. We assume that you already have registered a Stripe account and a WordPress site. We will be using a WordPress plugin to get donations. Learn how to integrate Stripe using Javascript. Stripe …
Read More “How to get donations from Stripe in WordPress”
In this tutorial, we are going to teach you, how you can create a UITableView with search bar in iOS using Swift 4. Following are the steps: Video tutorial: At this point, you can see the UITableView with search on top in the XCode preview. But we need to make it functional. Follow more iOS …
Read More “UITableView with search – Swift iOS”
Learn the difference between onload and addEventListener event listeners in Javascript. If you are creating a website and you want to perform some action in Javascript when the page is fully loaded, there are 2 ways to do this: Both are the events which are called when the page is fully loaded. But there is …
Read More “Difference between onload and addEventListener – Javascript”
We all make mistakes. Sometimes, we do not know what is going to happen because of our lack of knowledge. You may try to upload the files on iCloud. And when you delete them from the iCloud, they might get deleted from your computer as well. To prevent this, follow these steps: I am writing …
Read More “What to do if you accidentally delete your files during iCloud upload – Mac”
Learn how to download image in your Android app. The download images will be saved in external storage using Java. Demo First we will create a download icon. Goto your drawable folder and create an XML file named “ic_file_download.xml” and paste the following code in it: ic_file_download.xml Now we need to create a layout for …
Read More “Download image Android – External storage [Java]”