Codeigniter Menu

HTML CSS

Video

Sound

SEO


Feb 21
2012

PHP Abstract Class

Posted by bohemia in Untagged 

PHP OOP Abstract Classes

Abstact classes use the abstract keyword. It would start as shown below.
abstract class Myabstract{

You cannot instantiate an abstract class.
Feb 21
2012

Access Web Hosting PHPMYADMIN On Local WAMP Server

Posted by bohemia in Untagged 

How To Access Web Hosting PHPMYADMIN On Local WAMP Server

You can access PHPMYADMIN from your web hosting account using WAMP that is installed on your home PC.

Feb 21
2012

Align DIV in Center

Posted by bohemia in Untagged 

Align DIV in Ccenter

There could come a time when you want to align a DIV tag in the center of another div or the webpage. The code align=center can be added to the
Feb 21
2012

List Class CSS

Posted by bohemia in Untagged 

List Class CSS

Below is a class that can be used on a list elemen.
.alex_link_li
{
color:orange;
text-align:left;
text-decoration:none;
Feb 21
2012

Link Classes CSS

Posted by bohemia in Untagged 

Link Classes CSS

The code below will be used on a text link with the class alex_link.

a:link.alex_link
{
color:orange;
text-align:left;
text-decoration:none;
Feb 20
2012

PHP Return Array

Posted by bohemia in Untagged 

PHP Return Array

With PHP, you can return a variable or an array from a function. The example below demonstrates how to return a simple array.
<?php
function people(){
Feb 20
2012

PHP Returning Variables OOP vs Procedural

Posted by bohemia in Untagged 

PHP Returing Variables OOP vs Procedural PHP

Returning variables from PHP OOP is slightly different from that of returning variables with procedural PHP.

With
Feb 20
2012

Delete All Entries From MYSQL Table

Posted by bohemia in Untagged 

Delete All Entries From MYSQL Database Table With Truncate

Database tables can load up quickly with data. As data becomes obsolete you may want to remove all entries from
Feb 20
2012

PHP Return Variables

Posted by bohemia in Untagged 

Return Variables With PHP

With PHP, you can return one variable or an array from a function. The example below explains how to retun a single variable.
function
Feb 20
2012

PHP Global Variables

Posted by bohemia in Untagged 

Global Variables

Global variables are variables which are defined outside of a function, but are redecalred inside the function with a global keyword. The code below
<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>