Android Image Fading Animation Tutorial - Part 1

Submitted by donbermoy on
In this tutorial we will use the designer to create the layout. The layout includes an ImageView and Buttons. The user needs to have five buttons for FadeIn, FadeOut, FadeOutIn, FadeInOut, InfinityFade. The user presses on the button to interact with the Image. I name my 5 buttons as b1, b2, b3, b4, b5, correspondingly. When the user presses the button b1, the ImageView will fade in automatically with respect to the number of milliseconds coded by the user.

PHP File Handling: File Append

Submitted by joken on
In our previous tutorial we have learned how to open, close, read and write to a file. However, the ways which we wrote to a file so far have caused data that was stored in the file to be deleted. So in this lesson we’re going to deal on how to append to a file or to add on to the existing data, but we need to open the file in append mode. To start with, this application and if we want to add on to a file we need to open it up in append mode. To do this, let’s create first a new file PHP file called “append.php”.

Simple Inventory Sytem using PDO (For Beginners!)

Submitted by RobertSoriano on
1. OPEN phpmyadmin and create your desired database name. 2. While you are in your desired database, upload the sql file included in the project. 3. Change the database name in db.php to your desired database name. 4. run using your web server (Ex. wamp or xampp) and enjoy! In this inventory system you can: Add/Edit/Delete Items View number of items sold Search for existing items Add Quantity to

PHP/MySQLi Creating a Forum - Part 7 - Subscriptions #2

Submitted by Yorkiebar on
PHP/MySQLi Creating a Forum - Part 6 - Subscriptions #1 Introduction: This tutorial will be continuing my series of creating a forum in PHP/MySQLi/HTML. In this seventh part, we are carrying on with the subscription feature. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.