Saturday, August 26, 2017

PHP IMAP - Get Emails from GMAIL

Using PHP IMAP to retrieve emails on 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 emails from your GMIAL account easily without hassle.

Saturday, August 12, 2017

Awesome Trick to Retrieve files from Corrupted USB Drive

Have you at any point assaulted by one or more obscure virus? In the event that you have such an affair, you may realize that virus assaults will bring about surprising information misfortune on a hard drive, a memory card or a USB drive. For clients who have no clue about how to recoup virus contaminated documents, it is truly a catastrophe! Be that as it may, it doesn't make a difference! In this page we will present both of you conceivable answers for virus contaminated record recuperation: recoup virus tainted documents utilizing CMD and recoup virus contaminated documents with an expert information recuperation software.

Friday, August 4, 2017

Awesome Local Domain in XAMPP


Have you ever tried to do a local domain before? For developers out there who really wanted to change their development environment from "http://localhost/myproject" to "http://myproject.dev", well here is the trick on how to do this in you local server using XAMPP in WINDOWS.


Thursday, August 3, 2017

Awesome Way To Add Loading Screen using JQuery

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 one. In this tutorial, we will teach on how to add loading screen on your website using Gaspare Sganga's JQuery Loading Overlay library.

Friday, July 28, 2017

Awesome Way To Extract JSON File with PHP


Extracting PHP JSON format data.

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


Ohsomedevs Logging using file PHP banner.

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

Ohsomedevs - Multiple file upload using PHP and JS.

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 would use file uploads. For some cases, like uploading your profile picture on a social media site, it's not appropriate of having a multiple file upload for uploading a single image, but it depends on your flow your website though.

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

PHP MVC approach basic sample tutorial from ohsomedevs.

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

Creating angular js basic routes using UI router.
AngularJS Routes empower us to actualize multiview SPA's [Single Page Applications]. A multiview application would comprise of numerous views[HTML Templates where every format is related with a particular route] which would be stacked progressively because of client activity (clicking a connection, writing a particular URL in program e.g.). Utilizing directing, AngularJS application can indicate distinctive substance in light of which course is chosen. Courses are essentially bookmark-capable URL's to particular substance [specific view] of AngularJS application.

Friday, July 14, 2017

Adding a Google Map to Your Website

Creating google maps in 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.

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...