Codeigniter Menu

HTML CSS

Video

Sound

SEO

bohemia's Blog
Description:
No desc available

Feb 02
2012

PHP Object Oriented Programming

Posted by bohemia in Untagged 

OOP Programming in PHP

Depending on one's background and learning methods, a PHP programmer is often lead to examine Procedural PHP vs OOP in PHP.

For the serious
Feb 02
2012

PHP Built-In Functions

Posted by bohemia in Untagged 

PHP Built In Functions

Here is a list of common PHP fuinctions and their usage.

Execute a mysql query
mysql_query()

Connect To MYSQL Database
mysql_connect()
Feb 02
2012

PHP Constructs

Posted by bohemia in Untagged 

PHP Language Constructs

PHP has many built-in language constructs and functions. Language constructs can be used with or without parentheses while functions always have
Feb 02
2012

Remove Index With PHPMYADMIN

Posted by bohemia in Untagged 

Remove Unique Index With PHPMYADMIN

To remove unique index of a column,

1) Open PHPMYADMIN
2) Select database >database table >Structure >(Select from option a or b
Feb 02
2012

Unique MYSQL Columns With PHPMYADMIN

Posted by bohemia in Untagged 

Unique MYSQL Columns With PHPMYADMIN

Alter a table to create unique columns. This will ensure there is no duplicate values in a column that is unique.
1) Open PHPMYADMIN
Feb 02
2012

Unique MYSQL Table Creation

Posted by bohemia in Untagged 

Unique MYSQL Table Creation

Create a Table where only there is no duplicate firstname / lastname combinations
CREATE TABLE members
(
lastname varchar(30) NOT NULL,
Feb 02
2012

Create a New MYSQL Table With Unique

Posted by bohemia in Untagged 

Unique MYSQL Table Creation

Create a Table where only there is no duplicate firstname / lastname combinations
CREATE TABLE members
(
lastname varchar(30) NOT NULL,
Feb 02
2012

MYSQL Unique Columns

Posted by bohemia in Untagged 

MYSQL Add a Unique Column

The code below creates a new column called username to the table called mytable. The username must be unique. In other words, if you use an
Feb 02
2012

Search A Single MYSQL Database Table For a Specific String

Posted by bohemia in Untagged 

Search A Single MYSQL Database Table For a Specific String

1) Open phpmyadmin
2) Select Database >Select Table
3) Select Search 
4) Insert Words into Desired Text
Feb 02
2012

Search All MYSQL Database Tables For a Specific String

Posted by bohemia in Untagged 

Search All MYSQL Database Tables For a Word or Specific String

1) Open phpmyadmin
2) Select Database
3) Select Search
4) Insert Words into Text Input
5) Select Go  
<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>