Social Networking Site Project Setup

Submitted by GeePee on
In this tutorial, I will show you how to set up our project before we start developing a several web pages. First lets create a folder name “philsocial” inside our web server. Since we will be using a Twitter Bootstrap framework, and if you don’t have a copy of this, you can download it here. After downloading, you need to extract it and copy the following folder such as assets, css, fonts and js.

Social Networking Site: Simple Uploading of Profile Picture in the Home Page

Submitted by GeePee on
In this tutorial, I’m going to show you how to upload profile picture in the home area, and this profile picture will still be available even your navigating in different pages. To start with this application, open our project in local server and look for the “home.php” and open it. This home page will you show when you successfully logged in.

Validating and Saving a New Member (Advance PHP)

Submitted by GeePee on
In this tutorial, will be focusing on using advance PHP through Object-Oriented Programming approach. Using OOP approach it provides a clear modular structure for programs which it good for defining abstract data types and it makes easy to modify existing code as new objects can be created with small differences to existing ones. This time let’s create a new PHP file named “member.php” and save it inside includes folder.

Facebook Wall Script Clone (What’s On Your Mind)

Submitted by GeePee on
In this tutorial I’m going to show you how to add a Facebook-like Activity Stream or commonly known as “What’s on your mind?”. This will application will allow the user to enter their thoughts or and post it into the site wall. To start in this tutorial, we’re going to set up first our database table.

Calculate Number of Days in a Month using PHP

Submitted by alpha_luna on
PHP cal_days_in_month() The cal_days_in_month() it function to return the number of days in a month of a specified year and calendar. This is the form of this function: cal_days_in_month(calendar,month,year) calendar (required) Specifies the calendar to use month (required) Specifies the month year (required) Specifies the year Example: The following example shows the basic on how to use the cal

Uploading of Photos using Advance PHP

Submitted by GeePee on
In this tutorial I’m going to show you how to upload photo using PHP/MySQL, and this tutorial is a continuation of our previous topic called Social Networking Site: Simple Uploading of Profile picture in the home page. But in this time we’re not going to use the “home.php” file instead, we’re going to create a new page named “upload_photos.php”.

How to Create a Page Navigation (Pagination) using PHP/MySQL with Twitter Bootstrap

Submitted by GeePee on
In this tutorial, I'm going to show you how to create a simple Page Navigator or a Pagination using PHP and MySQL Database with Twitter bootstrap. If you are a web developer or you want to learn about programming, it is very important to know about Pagination with PHP and MySQL. Using the pagination with PHP, it allows you to paging the data into number of pages. To start with this application, first we need to set up our framework and file directories. This time, you need to download bootstrap framework.