Home
|
Contact Us
|
Search
|
SiteMap
Home
Our Projects
Web Projects
Applications
Misc / Other
Tutorials
Hrvatski tutorijali
Tutorials
JavaScripts
PHP & MySQL
Tools
CSS Optimizer
Contact
Search
Search Keyword:
Any words
All words
Exact phrase
Ordering:
Newest first
Oldest first
Most popular
Alphabetical
Section/Category
Search Keyword
function
Total 33 results found. Search for [
function
] with
Results 1 - 33 of 33
5
10
15
20
25
30
50
1.
What is PHP (Hypertext Preprocessor)
(Development/PHP & MySQL)
... much traffic his page was getting. He combined these binaries and created so called PHP/FI, which had more
function
ality. PHP/FI (Form Interpreter) included a larger implementation for the C programm...
Monday, 18 May 2009
2.
Force JoomSef to understand directory structure (trailing slash)
(Development/Tutorials)
... with error code 404.open your Joomla root directory and open this file components/com_sef/sef_ext.php Find
function
revert() in class sef_joomsef. Look for this code if ($row) else if ($row) el...
Thursday, 24 April 2008
3.
Add NoFollow attribute to Joomla menu items
(Development/Tutorials)
...ambot will not work on menu items in your Joomla because there is no Mambot event I could attach parsing
function
s to. There fore I came up with an idea to solve the issue. You'll have to edit...
Wednesday, 23 January 2008
4.
Add url to Favorites / Bookmarks
(Development/JavaScripts)
... Type and Wordpress platform are commented. <script language="JavaScript1.2" type="text/javascript">
function
CreateBookmarkLink() else if( window.external ) else if(window.opera && ...
Monday, 21 January 2008
5.
Glossary of Technical Terms
(Development/Tutorials)
... for anyone but the most basic users. If you would like a more fully
function
al website with special features, hire a real web design...
Wednesday, 12 December 2007
6.
JavaScript Timing Events
(Development/JavaScripts)
JavaScript Timing Events With JavaScript, it is possible to execute some code NOT immediately after a
function
is called, but after a specified time interval. This is called timing events. It
Sunday, 17 June 2007
7.
Measuring users' time on a page
(Development/JavaScripts)
...f your homepage how much time they have spent on your page. To do that, first we create a
function
called person_in(). This
function
creates a new date instance which is cal...
Sunday, 17 June 2007
8.
PHP - Using Functions
(Development/PHP & MySQL)
Using
Function
sReal world applications are usually much larger than the examples above. In has been proven that the best way to develop and maintain a large program is to construct it from
Sunday, 10 June 2007
9.
PHP - Control Structures
(Development/PHP & MySQL)
...ven that the best way to develop and maintain a large program is to construct it from smaller pieces (
function
s) each of which is more manageable than the original program. A
function
...
Sunday, 10 June 2007
10.
PHP - Playing With Strings
(Development/PHP & MySQL)
...uess it's a good idea to take a better look at this creature. We will also take a peek at some string
function
s that you might find useful for everyday coding. Creating a string ...
Sunday, 10 June 2007
11.
PHP - Variable Types
(Development/PHP & MySQL)
... And finally two special types: resource ( one example is the return value of mysql_connect()
function
) NULL In PHP an array can have numeric key, associative key ...
Sunday, 10 June 2007
12.
PHP Variables
(Development/PHP & MySQL)
...variable which is defined in different scope. The script below will not produce any output because the
function
Test() declares no $a variable. The echo statement looks for a local ve...
Sunday, 10 June 2007
13.
Installing Apache PHP and MySQL
(Development/PHP & MySQL)
...hown below. <?php phpinfo(); ?> phpinfo() is the infamous PHP
function
which will spit out all kinds of stuff about PHP and your server configur...
Sunday, 10 June 2007
14.
File Tools
(Projects/Applications)
This is a very simple tool for automating various file routines. This alpha release has only two
function
s.
Function
s: 1) Filename copy (will create clones of files without copying file data) 2
Wednesday, 23 May 2007
15.
Advanced String Handling
(Development/JavaScripts)
...e longer than what you want them to be- for example: <SCRIPT language="JavaScript"> <!--
function
getname() else alert('Hi '+yourname+'!'); } //--> </SCRIPT> Give ...
Monday, 14 May 2007
16.
The Math Object
(Development/JavaScripts)
The JavaScript Math object allows you to perform various calculations using its member
function
s. This two-part tutorial takes you through the use of the Math object, and then how to use the M
Monday, 14 May 2007
17.
The Date Object: with Clocks
(Development/JavaScripts)
... To begin, we must discuss the javascript date object. This works a bit differently than the pre-defined
function
s we have used in past scripts. To use the method
function
s of the date object, we ...
Monday, 14 May 2007
18.
External JavaScripts
(Development/JavaScripts)
...o paste the code into page after page? Well, this is where an external javascript can help! You can call
function
s from an external javascript on any page that you put the special <SCRIPT>...
Monday, 14 May 2007
19.
More JavaScript Buttons
(Development/JavaScripts)
...et's look at the HTML first this time (the reverse of my normal routine!). You will see that we can call a
function
on each event: <A href="javascript:void(0)" onMouseover="lightup('pic1')" on...
Monday, 14 May 2007
20.
Beginning With Forms
(Development/JavaScripts)
... button is clicked. For the above form, we can simply add a button at the end, and use the old "onClick"
function
to perform a javascript. Here is the sample code: <FORM name="coolform1"&...
Monday, 14 May 2007
21.
JS Rollovers/Hover Buttons
(Development/JavaScripts)
... <HEAD> <SCRIPT language="JavaScript"> <!-- if (document.images)
function
lightup(imgName) }
function
turnoff(imgName) } //--> </SCRIPT> <...
Monday, 14 May 2007
22.
JavaScript Arrays
(Development/JavaScripts)
...ript in action is a bit annoying. You can write this script in the head section. We will make this into a
function
, and call it from a link (the link must be in the body): <HEAD> <SC...
Monday, 14 May 2007
23.
The setTimeout Function
(Development/JavaScripts)
...ings happen with time delays rather than needing a click or a mouseover every time you want to execute a
function
. So, you want to set things to happen after a certain amount of time? Well, the se...
Monday, 14 May 2007
24.
Using Link Tags For Scripts
(Development/JavaScripts)
...s. I'll start with the easier to understand version first. The first method is to access a javascript
function
within the HREF attribute of your link tag. So, if you want to link to another p...
Monday, 14 May 2007
25.
Opening a New Window
(Development/JavaScripts)
...window or another browser. To open a new window, you will need to use yet another ready-made JavaScript
function
. Here is what it looks like: window.open('url to open','window name','attr...
Monday, 14 May 2007
26.
Redirection
(Development/JavaScripts)
...ameset page using a script like this: <HEAD> <SCRIPT language="JavaScript"> <!--
function
getgoing() if (top.frames.length==0) //--> </SCRIPT> </H...
Monday, 14 May 2007
27.
Browser Detection
(Development/JavaScripts)
...t to grab just the integer from the version information (2,3,4, etc.). To do this, we use the parseInt()
function
: var browserVer=parseInt(navigator.appVersion); Now, it returns only ...
Monday, 14 May 2007
28.
Confirmation Boxes
(Development/JavaScripts)
...a fun trip to the Barbie web site! To make use of it though, you'll probably want to write a JavaScript
function
in your head section that you can call in the body of the page. You could place...
Monday, 14 May 2007
29.
Variables, Functions, Operators, Conditionals
(Development/JavaScripts)
In a two-part section, we jump into the world of creating variables and
function
s. Then we look at some javascript operators and conditional statements. Now it's time to get into some really fu
Monday, 14 May 2007
30.
JavaScript Alerts
(Development/JavaScripts)
...nds are doing: onMouseover=" " This tells the browser to execute the command or
function
inside the double quote marks when the user moves their mouse over the link.  ...
Monday, 14 May 2007
31.
onMouseover: Your first Script
(Development/JavaScripts)
... " This is the form of the onMouseover command. The browser expects another command or
function
inside the quote marks. window.status='Hi there!' This command ins...
Monday, 14 May 2007
32.
The Basics- JavaScript Tutorial
(Development/JavaScripts)
... a normal tag. Just remember to close each tag before you go on! Also, if you are going to use JavaScript
function
s (we will get to these later on) , you will need to place your
function
s inside t...
Monday, 14 May 2007
33.
JavaScript: Vidljivost (Scope)
(Development/Hrvatski tutorijali)
...iti lokalnu varijablu koja je vidljiva samo unutar te funkcije, morate je deklarirati pomocu var izjave:
function
suma() U ovom primjeru varijabla i je lokalna za funkciju suma() , dok je vari...
Saturday, 12 May 2007
<< Start
< Prev
1
Next >
End >>
When a webpage requires registration
I provide my real email address
I provide my secondary email
I provide fake email
I avoid those sites
Login
Username
Password
Remember me
Lost Password?
No account yet?
Register
Tools
Coming soon...
Webmaster Link Exchange
Syndicate
Home
|
Search
|
Contact Us
|
Uvjeti - Disclaimer
|
SiteMap