Eric Schmidt Dubbed 2014 as Mobile Application Year

Submitted by anthea on
Nowadays, some of the consumers chose and bring handy gadgets with them including " Tablets" and " Phones" which were considered as the latest trend of today's generation. People also preferred for these two devices, for the fact that they can carry these out wherever they may go, which gives them convenience and enjoyable experience, unlike personal computer and laptop which were difficult to

PHP File Handling: Accessing File

Submitted by joken on
In this tutorial, we’re going to access file in PHP. And primarily we’re going to focus on this lesson in dealing with fopen (filename, mode) so we’re going to open a file and we’re to provide a filename and we’re going to tell it what mode is should open it. And remember using “fopen” opens up a file whether it exists or not so we will create it if necessary. At this time, we will know first how to deal with FILE ACCESS MODES: Below are the three basic ways to open a file and the corresponding character that PHP uses.

PHP Security (Form, Password Encryption, Fake Options)

Submitted by Yorkiebar on
Introduction: This tutorial will cover adding security in to your forms with PHP/HTML. Pre-creation: I am going to be using my login form as an example for this page, you can find my tutorial on a login form here; Login Form Tutorial. What security flaws are there? Whenever a user enters data in to your web forms the data gets processed as it is, and as such, needs the creator to add in security checks.

AutoComplete TextBox in a DataGridView

Submitted by janobe on
In this tutorial I will teach you how to Auto Complete a TextBox inside the DataGridView in the Visual Basic 2008 and MySQL Database. Others are used to store the list of items in the ComboBox. So, for a change, I used a TextBox because it’s easy to use and you don’t have to drop down in searching for the items that you needed. Just simply type the initial letter of the items that you’re going to search.

PHP Email Form

Submitted by Yorkiebar on
Introduction: This tutorial will cover creating an email form with PHP/HTMl. Pre-creation: Before you do this, please note that some errors may be caused by your php.ini file located on your server (online or local) during the actual mail sending process (if they do not arrive, for example). Steps of Creation: Step 1: First we are going to create our HTML form for the user to interact with. We