Blog Archives


Sep
8

Robots Meta

Posted in PHP/HTML by Admin

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

Sep
6

0


Quick Reference } &#125; Right curly brace { &#123; Left curly brace © &#169; Copyright ¢ &#162; Cent sign < &#060; Less than = &#061; Equals sign > &#062; Greater than ? &#063; Question mark @ &#064; Commercial at ¼ &#188; Fraction one-fourth ½ &#189; Fraction one-half ¾ &#190; Fraction three-fourths
Read More

Sep
6

PHP/HTML

Posted in PHP/HTML by Admin

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

Sep
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