PHP

A lot of things are there which you should follow when working with PHP. In this article, we'll discuss some important PHP hacks among them which every programmer should know about. These PHP tips will help you to write a more structured PHP script in less...

By: CodexWorld Sep 19, 2016
PHP

If you want to provide a time picker dropdown for selecting time, then there are many options to do that. You can use jQuery plugins to provide a time picker to the user or generate a custom time picker dropdown with PHP. If you are concern about the web p...

By: CodexWorld Aug 29, 2016
PHP

The shopping cart functionality is an important part of every eCommerce project. It helps the user to select and purchase multiple items at once. Also, the online shopping cart allows viewing the selected items and the total price before submitting the ord...

By: CodexWorld Mar 11, 2022
PHP

MailChimp is an email marketing service, helps to manage the subscribers of your website. MailChimp provides an easy way to integrate email signup form in your website and send the email newsletter to the subscriber. In this tutorial, we'll show you how to...

By: CodexWorld Aug 3, 2016
PHP

Extract URLs from the website is used in many cases, generating a sitemap from website URL is one of them. You can easily get all URLs from a web page using PHP. Here we'll provide short and simple code snippets to extract all URLs from a web page in PHP u...

By: CodexWorld Jul 26, 2016
PHP

In sentence case, the first character of an English sentence is capitalised and subsequent characters are lowercased, except for proper nouns and other words which are generally capitalised by a more specific rule. Converting string to sentence case is use...

By: CodexWorld Jul 15, 2016
PHP

The filtering feature helps to sort the recordset in the data list. Using the search and filter feature, the user can easily find the relevant data from the huge number of records. The sorting or filtering functionality is very useful in the data managemen...

By: CodexWorld Feb 25, 2021
PHP

XML stands for Extensible Markup Language which is used for store and transport data. Some web project needs to store products, user, or other information in the XML file. In those projects, you should need to create and save data in the XML file. Also, XM...

By: CodexWorld Jul 5, 2016
PHP

The PHP Data Objects (PDO) extension defines a lightweight interface to access database servers in PHP. You can use the same functions to execute SQL queries for different databases. Mostly, connect, fetch, insert, update, and delete operations are execute...

By: CodexWorld Nov 7, 2021
keyboard_double_arrow_up