Friday, July 28, 2017
Awesome Way To Extract JSON File with PHP
Extracting contents from a file is a common way for fetching data. In this article, you will learn on how you could possibly display a posts from a JSON file. First thing is we will read the JSON file by using the PHP function file_get_contents(). Next, we will need to parse the JSON formatted data to a PHP Object format. Lastly, we will display it using HTML.
Thursday, July 27, 2017
Awesome Way on Creating a Log Files with PHP
There are times, we feel that we are in need a file which logs a request or transaction from a process we are currently working. Although we can fetch it automatically on our database but what if we don't need to store the data on the database and we only need to put it as a log on a simple text file.
More often, we usually encounter some errors or successes during our development. It's a good practice to save these responses for us to know why we having errors.
Tuesday, July 25, 2017
Awesome Way To Upload Multiple File
Sunday, July 23, 2017
Highlighting Text with PHP
In this tutorial, we will make a function that will highlight a keyword from a sentence. Some time recently, most developers and other individuals used to highlight searched word in a string with the utilization of inline CSS (Cascading Style Sheet) styling.
$str = "The monkey hangs on the door";
$keyword = "the";
echo str_ireplace($keyword, ''.$keyword.'', $str);
Saturday, July 22, 2017
Awesome Real Time Count Down Timer using JavaScript
Timed events are fun and intuitive for your clients and users. Individuals adore performing in some kind of rivalry, however there are numerous different motivations to demonstrate a JavaScript count down timer on your site. Notwithstanding the reasons, I will demonstrate to you proper methodologies to make a countdown timer utilizing JavaScript and HTML. My essential alert for you is to understand JavaScript dealt with on the client side and has a dependency on the client's computer speed. Be that as it may, countdown timers are as yet successful for urging your users to rapidly play out a specific task.
Real Time Add and Delete Data using JQuery
Once in a while we may discover a need to progressively include and evacuate HTML components into a site page or application. Yes sometimes, since it is imperative that we have all the required data with us before beginning to outline the structures or pages. This however does not discount the likelihood of such necessity. There have been cases where clients needed to have advantageous access to including and expelling components on their website pages.
Friday, July 21, 2017
Exporting Data Via CSV and Excel
After putting so much effort into importing your data into an SQL database and connecting it to your website, how do you get it back out and into CSV or Excel in order to keep your off-line and on-line systems synchronized?
Thursday, July 20, 2017
Pagination using AngularJS
Most of us are having confusions on how to implement a pagination on our website specially when we are having a tons of data to fetch from our server.
Star Ratings Widget using CSS
This page shows how to implement a scalable star rating
widget, as shown in the demonstration below. The widget scales to the
surrounding text size with stars that never appear pixellated, regardless of
the widget size or the visitor’s screen resolution. The widget is created
purely using CSS, and does not require JavaScript.
Wednesday, July 19, 2017
MVC (Model-View-Controller) Basics in PHP
The Model-View-Control (MVC) design, initially figured in the late 1970s, is a product engineering design based on the premise of keeping the introduction of information isolate from the strategies that associate with the information. In principle, an all around created MVC framework ought to permit a front-end designer and a back-end engineer to take a shot at a similar framework without meddling, sharing, or altering documents either party is chipping away at.
Sunday, July 16, 2017
AngularJS Basic Routings
Friday, July 14, 2017
Adding a Google Map to Your Website
This instructional exercise demonstrates to you generally accepted methods to add a basic Google guide to a site page. It suits individuals with novice or moderate information of HTML and CSS, and a little learning of JavaScript. For a propelled manual for making maps, read the designer's guide.
Wednesday, July 12, 2017
Read More Using PHP
This tutorial enables you to set a limit of text characters of a description in an article. By doing that, we need to create a "Read More" link that will redirect the viewer to its full content.
Subscribe to:
Posts (Atom)
PHP IMAP - Get Emails from GMAIL
Fetching emails from your GMIAL account is easier than what you expected. With the use of PHP IMAP Extension, you can easily fetch your e...
-
Fetching emails from your GMIAL account is easier than what you expected. With the use of PHP IMAP Extension, you can easily fetch your e...
-
This page shows how to implement a scalable star rating widget, as shown in the demonstration below. The widget scales to the surroun...
-
In most cases, we might find ourselves in the need of loading screen when dealing with real time data. There are many ways on how to create ...
-
This tutorial enables you to set a limit of text characters of a description in an article. By doing that, we need to create a ...
-
Most of the time, we might find ourselves wanting to upload files more than one at a time. Though in some cases, it depends on how you w...
-
In this tutorial, we will make a function that will highlight a keyword from a sentence. Some time recently, most developers and other in...
-
This instructional exercise demonstrates to you generally accepted methods to add a basic Google guide to a site page. It suits individ...
-
The Model-View-Control (MVC) design, initially figured in the late 1970s, is a product engineering design based on the premise of keepin...
-
Have you ever tried to do a local domain before? For developers out there who really wanted to change their development environment from ...
-
Timed events are fun and intuitive for your clients and users. Individuals adore performing in some kind of rivalry, however there are nu...