In order to build hyperlinks in our applications. We might do this by hand but laravel provides a number of helpers to build URLs. Let’s explore them.
Adding Help Tabs In WordPress Plugins Pages
WordPress 3.3 introduces the ability to create custom help tabs in plugin pages. You can use these tabs for plugin documentation to allow users to quickly understand your plugin function. I will show you how to add a help tab to your plugin configuration page.
Learning MySQL Aliases
MySQL aliases are simply nicknames used to express tables, columns and functions’ names. These nicknames can be used in your queries to make them short and neat. Let’s explore this feature.
How To Test PHP Classes and Objects
PHP provides a set of functions to test classes and objects. These functions allow you to know more information about classes and objects that you are using at runtime. All these functions provided by PHP reflection API but their simplicity make them the first choice.
How To Add Custom Rewrite Rules In WordPress
WordPress rewrite API used to convert URLs from something programmatically convenient to something user and search engine friendly. This article will give you some background information about wordpress URL rewriting principles and API.
WordPress Options API
WordPress provides a set of functions that enable easy access to plugin options. By default wordpress and plugins options are stored in wp_options
table. Let’s explore these functions.
Kick-Starting MySQL
Today MySQL is one of the most popular open source databases as it supports millions of web applications. We will discuss the basics of MySQL like creating databases and tables and interacting with data.