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

Interactive Tracker Boxes #4 - jQuery

Submitted by Yorkiebar on

Introduction:

This is the final part of my mini-series explaining how to create interactive tracker boxes in HTML, CSS, and jQuery to allow HTML content to change once the user interacts with the boxes. This part is will explain the final step, jQuery.

jQuery Installation:

To begin using jQuery within our file, we first need to link it.

Interactive Tracker Boxes #3 - Content - jQuery Preparation

Submitted by Yorkiebar on

Introduction:

This tutorial is the third part of my interactive tracker boxes tutorial series which allows content to change dependant upon which tracking box the user clicks on. This part is covering the content of the tracker boxes.

HTML:

The heading for the box which is hovered over will go under the 'informationTitle' CSS ID, and the information will go under the 'informationParagraph' CSS ID.

Filing in C (part 2)

Submitted by Muzammil Muneer on

Writing in a File

In this part you will learn: 1. C syntax 2. Filing 3. Writing to a File In this tutorial we will learn about filing in C. Filing is a very important tool in C. In this program we will write data in a file. We will take input from the user and write that data in a file whose name will be entered by the user. Writing in a File Basic Step: Open Dev C++ then File > new > source file and start writing the code below.