|
Feb 21
2012
|
PHP Abstract ClassPosted 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 ServerPosted 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 CenterPosted 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 CSSPosted by bohemia in Untagged |
List Class CSS
Below is a class that can be used on a list elemen.{
color:orange;
text-align:left;
text-decoration:none;
|
Feb 21
2012
|
Link Classes CSSPosted by bohemia in Untagged |
Link Classes CSS
a:link.alex_link
{
color:orange;
text-align:left;
text-decoration:none;
|
Feb 20
2012
|
PHP Return ArrayPosted 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.function people(){
|
Feb 20
2012
|
PHP Returning Variables OOP vs ProceduralPosted 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 TablePosted 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 VariablesPosted 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.|
Feb 20
2012
|
PHP Global VariablesPosted by bohemia in Untagged |