for (i=0; i < n; i++) {
// code
}
for ($i = 0; $i < $n; $i++) {
SELECT | |
table1.field1, table2.field1 | |
FROM | |
table1 | |
INNER JOIN | |
table2 | |
ON | |
table1.primaryKey = table2.foreignKey | |
WHERE | |
table1.field2 = 'query' |
window.onblur = function () { document.title = 'Your new HTML Title tag'; } | |
window.onfocus = function () { document.title = 'The default title tag'; } |
body { margin: 15px;} | |
.bold { font-weight: bold; } | |
.caps { text-transform: uppercase; } | |
.center { text-align: center; } | |
.circle { list-style: circle; } | |
.smcaps { font-variant: small-caps; } | |
.unstyled { list-style: none; } |
// Change Title Tag on Blur | |
var titleCurrent = document.title; | |
var titleList = [ | |
"Hey, over here.", | |
"Don't you forget about me", | |
"Please come back" | |
]; | |
var titleIndex = ""; | |
function titleRandom(){ |
/* | |
customFunction 2006 Sean Walsh | |
Developed by: Developer Name | |
Format: | |
customFunction ( field ) | |
Parameters: | |
field - any related field, repeating field, or set of non-repeating fields; or an expression that returns a field, repeating field, or set of non-repeating fields. |
/* | |
--------------------------------------------------------------- | |
CUSTOM FUNCTION :: formatFilePath ( format ) | |
--------------------------------------------------------------- | |
formatFilePath © 2006 Sean Walsh | |
Developed by: Sean Walsh | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
Custom Function | |
PassScriptParameter ( Value ) | |
Parameter | |
Value | |
Definition | |
Let ( [ | |
xWord = "|" & Value & "|"; /* WHAT IS THE FILTER TERM WE ARE LOOKING FOR */ | |
xCount = Length ( xWord ); /* COUNT THE LENGTH OF THE FILTER TERM */ |
Let( | |
[ | |
NumbersOnly = Filter ( Phone; "0123456789" ); // make sure we are only dealing with numerals | |
NewNumber = Right ( NumbersOnly; Length ( NumbersOnly ) - 1 ); // trim the string by 1 for the next recursive call | |
NewFormat = Right ( Format; Length ( Format ) - 1 ) // trim the string by 1 for the next recursive call | |
]; | |
Case ( |
Right ( GetFieldName ( Self ) ; Length ( GetFieldName ( Self ) ) - Position ( GetFieldName ( Self ) ; ":" ; 1 ; 2 ) ) |