8
0
About the Robots <META> tag
In a nutshell
You can use a special HTML <META> tag to tell robots not to index the content of a page, and/or not scan it for links to follow.
For example:
<html>
<head>
<title>...</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
</head>
the NOFOLLOW directive only applies to links on this page. It’s entirely likely that
Read More
6
0
Quick Reference
} } Right curly brace
{ { Left curly brace
© © Copyright
¢ ¢ Cent sign
< < Less than
= = Equals sign
> > Greater than
? ? Question mark
@ @ Commercial at
¼ ¼ Fraction one-fourth
½ ½ Fraction one-half
¾ ¾ Fraction three-fourths
Read More
6
0
Data Types
integer, float, boolean, string, array, object, resource, NULL
Variable Declarations
$variablename = “value”;
$anothervariable = & $variablename; (Assign by Reference)
Declare Array
$arrayname = array();
Initialize Array
$arrayname = array(<value1> , <value2> , <value3>);
$arrayname = array(<key> => <value> , <key> => <value> ; (Define Keys)
$multiarray = array(<key> => array(value1> , <value2>)); (Multi-dimensional)
Common Array Functions
sort(<array>); (Sort array assigns new keys)
Read More
6
0
How to redirect pages with PHP, HML, htaccess, and JavaScript
Redirect Via php
{code type=php}<?
header( ‘Location: http://www.FremontTech.com’ ) ;
?>
<html>
<head> </head>
<body> </body>
</html>{/code}
ImportantThis must be the very first thing on the page!!
Redirect Via html
{code type=html}<html>
<head>
<meta http-equiv=”refresh” content=”5; url=http://www.FremontTech.com/”>
</head>
<
Read More







Twitter
Subscribe
Follow US