Nginx to Pursue Enterprise With Commercial Release

Submitted by blinkremz1 on
One of the world's leading open source web server software, Nginx, is speculated to be concluded as business prospective by pursuing enterprise with the aid of commercial release. Nginx is the proxy server for different protocols which include Hyper-Text Transfer Protocol (HTTP)and port concept for Microsoft Windows. “Nginx has the opportunity to bring the same solution we have for large-scale Web

Creating a Report in Student Registration Using Crystal Reports Part 3

Submitted by janobe on
This is the continuation of my tutorial. This time I will show you how to put a Crystal Report in a Windows Form and retrieving the records from the database. Let’s begin: First, open the file of Student Registration in Visual Studio 2008. Add a new file which is a Windows Form.

PHP - Users Online Script

Submitted by softafzar.net on
Hello, if you are developing a web application, you may need this online users script to show how many users is online. Yesterday i wrote a php class for it and decide to share it. Creating table Well, Before using this class, you must create a table in your database: CREATE TABLE `online_users` ( `session_id` char(150) NOT NULL, `last_activity` int(11) NOT NULL default '0' ); Creating php file

Android Text To Speech Application Tutorial - Part 2

Submitted by donbermoy on
In my previous example with my first tutorial, I came up with the image of fading in and out. Now, in this tutorial I will introduce to all of you the power of Basic4Android that convert the text to become a speech. Before we begin with the code you must need to have three buttons for speech, clear, and exit, and the other one is the EditText(Textbox).

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