Change Table Row Background Color When Qty Below 10 Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how to change table row background color when the qty is bellow 10. I use 10 as a default minimum value of qty, you can change it to any number if you want. This tutorial is helpful for thus creating a system that involves products. This is useful because it provides a legend or a prom the certain product is bellow the minimum qty. The admin can easily identify which product need to be order by the use of this feature.

Advanced Animation with a Deeper Understanding of VB.NET Class

Submitted by donbermoy on
Classes are essential to VB.NET programs. They are the building blocks of our programs. A Class is a reference type—it is allocated on the managed heap. It can have Functions and Subs, and also data members—this includes fields. It is a container for data and code. The data within the class can be accessed with properties. The code is referred to as methods. The best thing about OOP is that it

Save XML file from database record using PHP and MySQL

Submitted by ronard on
Hi to all sourcecodesterian, In last tutorial, we preview the XML tags to the browser. Now we are going to save the XML file to the directory which is "xmlBackup/". We make it in just clicking the Save XML link below the table. Then the script will save it directly to the said path above. How it will help you guys. Thank you for reading... Happy codings...

PHP RegEx: Meta Character class

Submitted by ronard on
We already seen the caret(^) as match the the beginning of string and (\z) match at the end of string that what they do. Now we are going to look with the others with beggining of bracket []. These Meta character are specifying a character class. What does the character class? This is a set of character that you want to match the string. They can listed individually like [abcdf] or a range [a-f]

Sum of All Even Numbers in VB6

Submitted by donbermoy on
In this article, we will create a program that can compute the sum of all even numbers using Visual Basic 6.0. We will write a Visual Basic program that reads an integer value and displays the sum of all even integers starting from 2 and input value, inclusive. It will display an error message if the input value is less than 2. Now, let's start this tutorial! 1.

Email Validation using VB6

Submitted by donbermoy on
Last month, I had discussed already in vb.net on how to make a program that can validate or determine whether an inputted email address is true or not. Now, i have here a different version of email validation written in VB 6.0. strong>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.

VB.NET Password Complexity

Submitted by donbermoy on
Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. In this tutorial, we will create a program that can determine if the inputted password is complex or not :) Now, let's start this tutorial! 1.

Text Scrolling Up Effect using VB.NET

Submitted by donbermoy on
In this article, we will create a program that has an effect of scrolling up the text. 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 Label named Label1 and labeled it as any text. Add a timer control named Timer1 and have its interval of 30.