470. Notable PHP package: waPluginator
Updated on: 2016-10-18
Posted on: 2016-10-18
Some projects need to create files of different types, for instance to create themes and other types of configuration plugins.
Usually these files can be created from templates but if you need non-technical users to edit those files, they will not be able to do it because it is more complicated than they can handle.
This package provides a better alternative that consists in defining parameters that the users can edit using regular Web forms, thus without having to edit templates or configuration files.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Usually these files can be created from templates but if you need non-technical users to edit those files, they will not be able to do it because it is more complicated than they can handle.
This package provides a better alternative that consists in defining parameters that the users can edit using regular Web forms, thus without having to edit templates or configuration files.
Read this article to learn more details about how this notable PHP package works.
469. PHP 8 Performance to be Boosted with a JIT engine - Lately in PHP podcast episode 76
Updated on: 2016-12-23
Posted on: 2016-10-17
Recently Dmitry Stogov of Zend announced that he is restarting the work on JIT engine that eventually will boost the performance of PHP 8.
These great news was one of the main topics discussed by Manuel Lemos and Johnny Mast on the episode 76 of the Lately in PHP podcast now also being streamed using livecoding.tv.
In this episode they also commented about new proposals for PHP like having both PHP 5 and PHP 7 builds running on the same Web server, single entry PHP apps for reducing the overhead of application bootstrap code, type strict comparisons, built-in request and response objects in PHP, among other topics.
This article also contains the transcript of the podcast summary.
Listen to the podcast, or watch the hangout video to learn more about these interesting PHP topics.
More ...
Post a comment
See comments (0) Trackbacks (0)
These great news was one of the main topics discussed by Manuel Lemos and Johnny Mast on the episode 76 of the Lately in PHP podcast now also being streamed using livecoding.tv.
In this episode they also commented about new proposals for PHP like having both PHP 5 and PHP 7 builds running on the same Web server, single entry PHP apps for reducing the overhead of application bootstrap code, type strict comparisons, built-in request and response objects in PHP, among other topics.
This article also contains the transcript of the podcast summary.
Listen to the podcast, or watch the hangout video to learn more about these interesting PHP topics.
468. Notable PHP package: PHP Safe Image Preview
Updated on: 2016-10-13
Posted on: 2016-10-13
Some sites need to receive images from users that may not be safe for displaying to non-adults.
In this case it may be better to avoid showing those images to children. However, when you don't know if the user is not an adult, it would be better to show an obfuscated version of the image.
This class can use an API to determine if an image is not safe for showing to non-adults. It can also return a blurred version when it is the case, thus avoid showing the image explicitly.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
In this case it may be better to avoid showing those images to children. However, when you don't know if the user is not an adult, it would be better to show an obfuscated version of the image.
This class can use an API to determine if an image is not safe for showing to non-adults. It can also return a blurred version when it is the case, thus avoid showing the image explicitly.
Read this article to learn more details about how this notable PHP package works.
467. You have doing PHP iteration the wrong way!
Updated on: 2016-10-12
Posted on: 2016-10-12
Never loop through a problem that should be solved by iteration.
Read this opinion article to understand why using iterators is a better idea than using loops in PHP.
More ...
Post a comment
See comments (10) Trackbacks (0)
Read this opinion article to understand why using iterators is a better idea than using loops in PHP.
466. Notable PHP package: BurgeATS
Updated on: 2016-10-11
Posted on: 2016-10-11
Many developers work for companies that have many times of needs but all those that have customers that need to provide support, often need a platform to keep track of their customer contacts and support requests.
This package implements an extensive solution to keep track of the customer information as in a CRM, as well the details of their support tickets and their status.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package implements an extensive solution to keep track of the customer information as in a CRM, as well the details of their support tickets and their status.
Read this article to learn more details about how this notable PHP package works.
465. PHP Articles Report September 2016 Edition
Updated on: 2016-10-07
Posted on: 2016-10-07
This is the September edition of the podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the latest outstanding PHP Articles published recently.
They commented on articles about logging events and show them with nice graphs, getting currency exchange rates for the present or any past date, getting PHP jobs in high growth companies, using error monitoring services, generating SQL to install database schemas, and several articles and videos to help developers create software product businesses.
Listen to the podcast, or watch the hangout video to learn more about these PHP articles.
More ...
Post a comment
See comments (0) Trackbacks (0)
They commented on articles about logging events and show them with nice graphs, getting currency exchange rates for the present or any past date, getting PHP jobs in high growth companies, using error monitoring services, generating SQL to install database schemas, and several articles and videos to help developers create software product businesses.
Listen to the podcast, or watch the hangout video to learn more about these PHP articles.
464. Notable PHP package: Mask
Updated on: 2016-10-06
Posted on: 2016-10-06
Template engines are frequently used in PHP applications to generate Web pages or some kind of other output from template files or strings, as they make it easy to separate login from presentation code.
Usually you use a component that processes a template file or a string and replaces some variables with values passed to the template engine.
This package provides an alternative approach by using a trait that can be used by any class. The template variables are replaced by the values of class variables or return values of class functions with the same names.
This way developers can easily turn templates into classes of their own that they can call to generate their applications output.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Usually you use a component that processes a template file or a string and replaces some variables with values passed to the template engine.
This package provides an alternative approach by using a trait that can be used by any class. The template variables are replaced by the values of class variables or return values of class functions with the same names.
This way developers can easily turn templates into classes of their own that they can call to generate their applications output.
Read this article to learn more details about how this notable PHP package works.
1. Encrypt Post Data PHP Solution without SSL - How to Encrypt Form Data Before Submit
Updated on: 2017-04-19
Posted on: 2016-10-05
Blog: PHP Form Encryption package blog
Package: PHP Form Encryption
Encryption is not just for large corporations. Small businesses and nonprofit organizations also need to protect their information, not just due to commercial or industrial concerns, but also about personal data that should be protected to enforce laws in many countries.
However, the ideal solution, which is to use SSL/TLS encryption is not always available in all scenarios.
Read this tutorial to learn how to implement encrypted form data exchange without depending on the availability of SSL/TLS connections.
More ...
Post a comment
See comments (21) Trackbacks (0)
However, the ideal solution, which is to use SSL/TLS encryption is not always available in all scenarios.
Read this tutorial to learn how to implement encrypted form data exchange without depending on the availability of SSL/TLS connections.
463. Notable PHP package: PHP Google Maps Time Zone Convert
Updated on: 2016-10-04
Posted on: 2016-10-04
Some applications need to be able to show the time for a certain event in the current user time zone. The time zone depends on the geographic location of the user.
The location of the user may be determined from the user IP address by using a geo IP database or Web service.
So, if you have the user location coordinates, you can use the Google Maps API to determine what is the user time zone.
This package can call determine the time zone of a location precisely calling the Google maps API.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
The location of the user may be determined from the user IP address by using a geo IP database or Web service.
So, if you have the user location coordinates, you can use the Google Maps API to determine what is the user time zone.
This package can call determine the time zone of a location precisely calling the Google maps API.
Read this article to learn more details about how this notable PHP package works.
462. How to Get Investors for Your Software Product Business: Part 1
Updated on: 2025-02-22
Posted on: 2016-10-03
Many developers gave up on their dreams of creating their own software product business because they feel they need to obtain an investment but they do not know how to do it.
The good news is that investment is often not necessary until you have already of a business generating revenue. Until then you can work on your software product without having to invest from your own pocket.
Watch this video to learn what is the role of the investors, the different types of investors that exist, and what type of investment you need to seek depending on the phase of your project.
More ...
Post a comment
See comments (0) Trackbacks (0)
The good news is that investment is often not necessary until you have already of a business generating revenue. Until then you can work on your software product without having to invest from your own pocket.
Watch this video to learn what is the role of the investors, the different types of investors that exist, and what type of investment you need to seek depending on the phase of your project.
