POS with Barcode Generator Using PHP/MySQL

Submitted by jobel on
This code will guide you on how to create your own POS with barcode generator using PHP/MySQL. The features of this system are: It allows you to conduct sales using barcode scanner or using search box. Allow you to add, edit and delete products Generate reports such as receipt, sales report (daily, monthly, yearly). This system also has user restriction just like the cashier and the admin. The

PHP RegEx: Match A String

Submitted by ronard on
In this tutorial I will show you the basic in regex. In brief discussion. Regex is considered a method of matching pattern within a string. In PHP usually used PCRE or "Perl Compatible Regular Expressions". Let's see a sample to print a string. The above code are printing "abcdefghijklmnopqrstuvwxyz0123456789". Now were going to match the character "xyz" using regex. The code above will output "1"

Connect Android to Remote MYSQL database

Submitted by hob2006 on
This simple program can access mysql database remotely via wireless access point (wireless router). using your android mobile phones/tablets. MYSQL Library Download: http://www.mediafire.com/download/k38y5yqj2v34zbi/mysql_1.01.zip Thanks to Erel! For technical support: Please join to my Facebook page: Basic4Android Pilipinas Thanks!

Print PDF file using PHP and MySQL

Submitted by ronard on
Hi to all beginners in PHP and MySQL. This script will show you on how to print a PDF using FPDF in PHP and MySQL. How to install the script? 1. Unzip the downloaded file. Then copy the unzip to this path: xampp/htdocs/. 2. Goto the "db" folder. 3. Inside the "db" folder having a "tutorials" folder. Copy it to this path: xampp/mysql/data. 4. After you finish the above steps. 5. Goto to the web

ASCII Generator using VB 6.0

Submitted by donbermoy on
ASCII is one of the important functions of a program as it creates shortcut keys when pressed. ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as 'a' or '@' or an action of some sort. Most computers use ASCII codes to represent text, which makes it possible to transfer data from one computer to another.

Create a Drag and Drop Program in VB.NET

Submitted by donbermoy on
Drag and Drop is a very common feature in VB.NET. It is when you grab an object and drag it to a different location. In VB.NET, drag and drop is part of the standard, and any controls can be draggable. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one TextBox named TextBox1 and ListBox named ListBox1.

No Duplication of Item in ListBox using VB 6.0

Submitted by donbermoy on
In this tutorial, we will create a program that can filter duplication inside our ListBox when we input the same text in the TextBox. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add only one Button named Command1 and labeled it as "Add Item", one TextBox named Text1 and make it as empty, and one LitBox named List1

Border-radius Property in CSS

Submitted by argie on
This CSS property is supported in IE9+, Firefox, Chrome, Safari, and Opera. Border radius allows the developer to insert and define how rounded the border corners are in the div, span and other tag. Border-radius property is a shorthand to set the four properties border-top-left-radius, border-top-right-radius, border-bottom-right-radius and border-bottom-left-radius.