PHP

CSV (comma-separated values) is the most popular file format to store data in plain text for offline uses. Generally, a CSV file is used to import and export data for moving data between programs. Import and export data is the most used feature in the web ...

By: CodexWorld Apr 25, 2024

Creating a modal popup is very easy with Bootstrap. So, if your web application uses Bootstrap, it's always a good idea to use Bootstrap for populating modal dialog. Because it does not require any third party jQuery plugin. Not only the static content but...

By: CodexWorld Feb 25, 2021
PHP

When we upload an image file in PHP, the uploaded image is stored in a directory of the server and the respective image name is stored in the database. At the time of display, the file is retrieved from the server and the image is rendered on the web page....

By: CodexWorld Aug 16, 2023
PHP

Mail sending feature is the most used functionality in the web application. When we sending email from our website, an email template is used to make email content attractive and user-friendly. Dynamic Email Template makes it easy to manage templates for d...

By: CodexWorld Jul 10, 2017

The jQuery ajax is very useful when you want to post or get data from PHP script without page refresh. Generally, you return the string to Ajax call for updating a part of the web page. But sometimes requires getting the object or array data from PHP file ...

By: CodexWorld Jun 12, 2017
PHP

The database backup is a most important task for every web developer. Regular database backup prevents risk to lose the data and it helps to restore the database if any issue occurred. So, backup the database whenever possible is a good idea. There many wa...

By: CodexWorld Feb 8, 2018

PayPal Subscriptions payment lets you accept payment for your member subscription service. If you have a membership website and want to add a subscription feature, PayPal subscription API helps to do it easily. The PayPal Subscription button is a quick and...

By: CodexWorld Feb 29, 2024
PHP

Live image upload feature makes web application more user-friendly. With live upload, the user can select and upload images without page refresh. You can implement live image upload feature with jQuery without using Ajax or any plugin. The live image uploa...

By: CodexWorld May 10, 2017
PHP

Facebook Graph API makes it easy to embed Facebook albums to the website. You can easily create a photo gallery with Facebook photo albums using PHP and Graph API. Do you want to get all the photos from the Facebook page and show on your website? There's a...

By: CodexWorld Apr 28, 2017
keyboard_double_arrow_up