Mathematical Operation

Submitted by oursharingclub on
//Author :LearningPen //Date : 28/9/2014 //MyBolg :http://learningpen.blogspot.com/ //Language : C++ //Tool : Dev C++ Notice: Reference http://www.sourcecodester.com/cc/7937/c-functions-basic-mathematical-operation.html. According to some of his code, modified by myself,I also use a class structure. Thank you for using. MyBlog:http://learningpen.blogspot.com/ welcome. ^-^

How to Calculate Any Day of the Week?

Submitted by oursharingclub on
Author : Walter Date : September 27, 2014 Firday MyBlog : http://learningpen.blogspot.com/ Tool : Dev C++ Language : C++ Function : Calculate any day of the week? #include #include // for floor() #include // for getch() #include // for exit() #include // for system() using std::cout; using std::cin; //======================= void Menu( void ); int main( void ) { Menu(); return 0; }// End of main

Using str_ireplace in PHP

Submitted by GeePee on
This project will teach you on how to use str_ireplace in PHP. I have here an example which is word censoring. I created an array with the words that I want to replace with. Usually, we use strtolower in replacing words. But we can also use str_replace or just simply add i on str_replace. Hope you learn from this.

A Simple Joke Management System Using PHP and MySQL

Submitted by patricbensen on
JMS is a PHP MySQL integrated system that allows people to submit what they consider jokes in their own perspective. I did create this for my dear brothers and sisters who are just into PHP and MySQL programming. Hope you find it helpful to your tutorials. We used this languages and database systems to develop:- PHP MySQL You can view the live sample here Admin Follow me on twitter @patricbensen

Parallax Scrolling #2 - CSS

Submitted by Yorkiebar on

Introduction:

This tutorial is the second part of my Parallax Scrolling mini-series tutorial in which we are going to be using CSS styling to style our required tags and classes.

CSS:

CSS is Cascade Style Sheets and are used to styling elements in HTML to make their visual appearance more appealing.

Internal:

I am going to be using internal CSS for this tutorial which means I only require the single HTML page. To achieve this, I am going to write some style tags within my head tags of my HTML page.

Parallax Scrolling #1 - HTML

Submitted by Yorkiebar on

Introduction:

This tutorial is the first of three parts in which I will show you how to create a Parallax effect using HTML, CSS, and the Javascript library jQuery.

What is a Parallax Effect?

A parallax effect is where one element or layer moves in the opposite direction to another element or layer. This can be used in a professional manor for some websites to give a nice, smooth effect to the content.

HTML:

First we need the HTML for our page.

Password Security Version 2.0

Submitted by oursharingclub on
Password.cpp Author : oursharingciub Date : September 26, 2014 Firday Email : [email protected] Tool : Dev C++ Language : C++ Notice: Reference Mr. Jake Rodriguez Pomperada programming #include #include #include #include //system(), Sleep( ) #include using namespace std; const int PASSLEN= 7 ; //The length of password string PassGet( void ); // Get the password void Menu( void ); //The start