Blog – Masonry + Sidebar

PHP

How to convert xml data into json using php?

In this article, we are going to see how to convert XML data into JSON format using PHP .

PHP

How to use eval function in php?

The eval function in PHP is an inbuilt function that evaluates a string as PHP code.

PHP

How to load a php file into a variable in php?

The file_get_contents() or include() reads a file into a variable. This function is the preferred way to read the contents of a file into a variable. It will use memory mapping techniques, if this is supported by the server, to enhance performance.

PHP

How to mysqli prepared statements error reporting in php?

All of the mysqli functions return false on failure, so you could easily just check for truthiness on each function and report errors.

How to remove next element using jQuery?

To remove the next element in jQuery, use the remove().

CSS

How to create liquid filling effect on text using HTML and CSS ?

The liquid fill text animation can be done using CSS | ::before selector. We will use key frames to set height for each frame of animation. Please make sure you know about both CSS | ::before selector and CSS | @keyframes Rule before try this code.