PHP Classes

PHP Classes blog

Recommend this page to a friend!

Latest PHP Classes blog posts

  All package blogs All package blogs   Blog PHP Classes blog   Post article Post article  
  1777 - 1768   ...   677 - 668   667 - 658   657 - 648   647 - 638   637 - 628   627 - 618   617 - 608   607 - 598   597 - 588   587 - 578   577 - 568   567 - 558   ...   7 - 1  

534. Notable PHP package: PHP CSS to Inline Styles

Updated on: 2017-03-08

Posted on:

When you want to send email messages formatted as HTML, usually the mail services will filter the CSS style sheets it may use for security reasons, thus making the message be rendered in a different way than it was intended.

This package provides a solution for that. It consists in parsing the message HTML and apply the CSS stylesheets to the HTML attributes.

However, this may generate much larger HTML messages. Therefore it provides options to either remove the original CSS in the HTML file to make it small, as well remove the original style attributes from the tags and exclude media queries from the original CSS to minimize the final HTML size.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

533. Notable PHP package: PHP Generate Memorable Password

Updated on: 2017-03-07

Posted on:

Many sites generate passwords for users that want to access for the first time or recover a lost password. However, many times those passwords are made of many random characters that are hard to remember.

This class provides a more user friendly solution by using real words as basis to generate random passwords. These words are taken from test in RSS feeds, so they are easy to remember because they are real words, not a random set of text characters.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

532. Notable PHP package: PHP Elastic Search for MySQL

Updated on: 2017-03-02

Posted on:

MySQL has a good full text search engine built-in but when you try to use full text searches and at the same time have the application updating the database, it may be very slow because updating the indexes slow down the rest of the database accesses.

It is often faster to index the data to be searched with a separate database.

Elastic search is an independent engine for indexing and searching data using a REST API.

This class can index and search MySQL records using Elastic Search. This way you can provide a full text search on data in a MySQL database without overloading the main MySQL server.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

531. PHP and JavaScript Innovation Award Report February 2017 Edition - November 2016 nominees

Updated on: 2017-02-28

Posted on:

This is the February edition of the Innovation Award podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the outstanding features of all the past month nominees and winners PHP and JavaScript packages, the prizes that the authors earned, starting with the nominees from the month of November 2016.

Listen to the podcast, or watch the hangout video to learn why the nominated packages were considered to be innovative, as well the current rankings of the Innovation Award Championship by author and by country.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

530. Notable PHP package: PHP Sodium Compat

Updated on: 2017-02-27

Posted on:

Many PHP projects use the mcrypt extension to implement features that require encrypting, decrypting or hashing of data. However, mcrypt will be removed from PHP 7.2 core distribution because extension is based on code that is not maintained for more than 8 years.

Alternatively, developers should use the sodium extension that is now available in PECL and will make part of the PHP 7.2 core distribution.

This class provides a polyfill for sodium extension, so you can use it in your current PHP projects to prepare for PHP 7.2 upgrade, even if you are using an older PHP version and the PECL sodium extension is not available.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

529. PHP Articles Report February 2017 Edition

Updated on: 2017-02-23

Posted on:

This is the February 2017 edition of the podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the latest outstanding PHP articles published recently.

In this edition they discuss articles about the fastest method to evaluate the performance of a PHP Web application hire a server that can handle its needs in terms of CPU, RAM and disk, sending postal mail and cheques using an API, gamify a site the site link secret path, parsing and converting text with an amount in English to the respective number, and a simple tutorial on how to use MySQL with PDO in PHP 7.

Listen to the podcast, or watch the hangout video to learn more about these PHP articles.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

528. Best WordPress Security Plugin 2018 and 2017 - Review and Comparison of Top Free and Premium Versions of New Plugins and Support Services from Several Companies

Updated on: 2018-05-08

Posted on:

WordPress is the most popular Web publishing platform. Since it is used by many Web site owners, it is also a target of many security exploits.

Many WordPress site owners do not know enough about security to protect their sites from being abused. Therefore they need to use plugins and tools to help them prevent and eventually fix security issues.

Read this this article to compare the features of the most recommended WordPress security plugins so you can pick one that addresses your needs.


Blog More ...   Post a comment Post a comment   See comments See comments (2)   Trackbacks (0)

527. Notable PHP package: PHP JSON API Server

Updated on: 2017-02-21

Posted on:

Nowadays PHP is used to implement APIs that serve mainly mobile applications. Implementing an API consists mainly of defining how PHP code will handle requests for different URL endpoints.

This package makes the process as simple as defining as specifying a directory that contains scripts for handling requests for each of the supported API endpoints.

Each endpoint script will be loaded and a function is called to handle the endpoint request and returns the response data to be returned to the calling client in JSON format.

The package also comes with a simple JavaScript library to make calls to an API implemented with this package.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

526. Notable PHP package: PHP Address Autocomplete and Verification

Updated on: 2017-02-20

Posted on:

Many sites need to request users to enter their postal addresses, like for instance in ecommerce sites. This may be a tedious task for the user, especially those that do not like to type on mobile devices.

Often users give up registering or buying a product when they need to fully enter their postal addresses on forms. So bureaucratic form filling may cause loss of customers.

This package provides a solution to minimize the pain of the users that need to enter postal addresses in forms. It provides means to autocomplete an address partially entered by the user in a Web form.

When used in conjunction with AJAX requests, it can autocomplete the address while the user is typing in on the form without having to reload the current page.

The possibility to validate if an address is correct is also very useful as it may avoid problems of delivering goods to addresses that are incorrect.

Read this article to learn more details about how this notable PHP package works.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

525. Making PHP 7.2 More Secure with LibSodium Extension - 5 Minutes Lately in PHP podcast episode 80

Updated on: 2017-03-08

Posted on:

Many PHP developers still use the mcrypt extension for encrypting and decrypting data. However, that extension is based on a C library that is not being maintained anymore by its developers. PHP applications are at risk of being exposed to eventual vulnerabilities that may be discovered in mcrypt but its developers will not fix them.

A better alternative is to use the LibSodium extension proposed by the security expert Scott Arciszewski to become part of the core PHP distribution since PHP 7.2.

This was one of the main topics discussed by Manuel Lemos and Christian Vigh (the PHP Innovation Award Winner of the Year of 2016) on the episode 80 of the Lately in PHP podcast.

In this episode they also talked about other proposals for future PHP versions like improving the mail() function with options passed using the 5th parameter, final modifier for class constants, type hinting for static objects, using namespaces for global functions, type hinting for arrays with values of the same type .

This article also contains a podcast summary as a text transcript and a 5 minute video of the summary.

Listen to the podcast, or watch the hangout video, or read the transcript text to learn more about these interesting PHP topics.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

  1777 - 1768   ...   677 - 668   667 - 658   657 - 648   647 - 638   637 - 628   627 - 618   617 - 608   607 - 598   597 - 588   587 - 578   577 - 568   567 - 558   ...   7 - 1  
  All package blogs All package blogs   Blog PHP Classes blog   Post article Post article