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
value
Total 34 results found. Search for [
value
] with
Results 1 - 34 of 34
5
10
15
20
25
30
50
1.
Zaobljeni obrubi sa sjenom u CSS-u
(Development/Hrvatski tutorijali)
...y. The CSS affected is the following, with the measurements from the diagram used instead of actual
value
s: /* Top border and right corner */ .bt /* Top left corner */ .bt div /* Bottom bord...
Tuesday, 22 April 2008
2.
CSS Shorthand Guide
(Development/Tutorials)
...k. Let’s set the record straight. There is no official guide for each and every CSS shorthand property
value
. So let’s work together and put one together shall we? Ok. Straight to the business. Any...
Wednesday, 27 February 2008
3.
How to enable or disable register_globals via .htaccess
(Development/Tutorials)
...gs. The first IfModule is # for Apache 1.3, the second for Apache 2. <IfModule mod_php4.c> php_
value
register_globals 1 </IfModule> <IfModule sapi_apache2.c> php_
value
registe...
Thursday, 13 September 2007
4.
JavaScript Timing Events
(Development/JavaScripts)
... Syntax var t=setTimeout("javascript statement",milliseconds) The setTimeout() method returns a
value
- In the statement above, the
value
is stored in a variable called t. If you want to ca...
Sunday, 17 June 2007
5.
PHP - Using Forms
(Development/PHP & MySQL)
...t as post or get. When using a form with method="post" you can use $_POST to access the form
value
s. And when the form is using method="get" you can use $_GET to access the val...
Sunday, 10 June 2007
6.
PHP - Using Functions
(Development/PHP & MySQL)
... Function repeat() have two arguments $text and $num. The $num argument has a default
value
of 10. The first call to repeat() will print the text 15 times because the
value
of...
Sunday, 10 June 2007
7.
PHP - Control Structures
(Development/PHP & MySQL)
... Function repeat() have two arguments $text and $num. The $num argument has a default
value
of 10. The first call to repeat() will print the text 15 times because the
value
of...
Sunday, 10 June 2007
8.
PHP - Playing With Strings
(Development/PHP & MySQL)
...hes before characters that need to be quoted in $string This function is usually used on form
value
s before being used for database queries. You will see this function used a lot in t...
Sunday, 10 June 2007
9.
PHP - Variable Types
(Development/PHP & MySQL)
...iable Types PHP supports eight primitive types. Four scalar types: boolean : expresses truth
value
, TRUE or FALSE. Any non zero
value
s and non empty string are also counted as TRUE....
Sunday, 10 June 2007
10.
PHP Variables
(Development/PHP & MySQL)
... echo statement looks for a local version of the $a variable, and it has not been assigned a
value
within this scope. Depending on error_reporting
value
in php.ini the script b...
Sunday, 10 June 2007
11.
Opening & Ending PHP Tags
(Development/PHP & MySQL)
...pport it ). Short tags are only available only explicitly enabled setting the short_open_tag
value
to On in the PHP configuration file php.ini. So, for all PHP code in this website I ...
Sunday, 10 June 2007
12.
Installing Apache PHP and MySQL
(Development/PHP & MySQL)
...html, index.php or main.php as the directory index you can modify the DirectoryIndex
value
like this : DirectoryIndex index.html index.php main.php Now whenev...
Sunday, 10 June 2007
13.
Defragmentacija hard diska
(Development/Hrvatski tutorijali)
... Onda nema potrebe za defragmentacijom. A ako vam se pak pojavi poruka "You should defragment this
value
" onda trebate defragmentirati tu particiju. Kliknite na "Defragment" i sačekajt...
Sunday, 10 June 2007
14.
Get the Viewer's Screen Resolution
(Development/JavaScripts)
...ight version of your page, depending on their computer's screen resolution. The properties hold the
value
s of the pixel length of the width and height of the viewer's screen. For example, you cou...
Monday, 14 May 2007
15.
Advanced String Handling
(Development/JavaScripts)
...hich will return the length of the string: my_car.length Of course, if we want to use the
value
it returns, we can assign it to a variable: var how_long=my_car.length; In t...
Monday, 14 May 2007
16.
The Math Object
(Development/JavaScripts)
... functions of the Math object. Also, it provides a few constants such as pi. The easiest way to get a
value
is to define a variable and set its
value
to a property or function of the Math Object...
Monday, 14 May 2007
17.
The Date Object: with Clocks
(Development/JavaScripts)
...tle twist: var thetime=new Date(); As you can see, we are not assigning the new variable a direct
value
. Instead, the code above defines the variable as a new instance of the date object. This...
Monday, 14 May 2007
18.
Navigation Drop Boxes
(Development/JavaScripts)
... Select Box and then go to the new destination. In the last section, we learned how to access the
value
attributes of a text box and a button. We can access the Select Box in the same way. B...
Monday, 14 May 2007
19.
Beginning With Forms
(Development/JavaScripts)
...t the following form code: <FORM name="coolform"> <INPUT type="text" name="cooltext"
value
="I am Cool!!!" size="20"> </FORM> This code creates a little input box fo...
Monday, 14 May 2007
20.
JavaScript and Frames
(Development/JavaScripts)
...something in that frame with: parent.right_frame.attributes_to_change Let's start by changing the
value
of a text box in a frame on the right from a frame on the left side. First, set up a lit...
Monday, 14 May 2007
21.
JS Rollovers/Hover Buttons
(Development/JavaScripts)
...ence to an image in the document by the name of "pic1". The new source (url) for the image is now the
value
of "pic1on.src", which we defined earlier as "shoes2.gif", our 2nd image. A bit compli...
Monday, 14 May 2007
22.
JavaScript Arrays
(Development/JavaScripts)
... the array to store. So, for our quotes, we could write: var quote= new Array(5); Now, to assign
value
s, we are going to use what is called an index number, and place it inside brackets. We a...
Monday, 14 May 2007
23.
The setTimeout Function
(Development/JavaScripts)
...t;/SCRIPT> </HEAD> <BODY> <FORM name="myform"> <INPUT type="text" name="mytext"
value
="Not Much Here." size="30"> <INPUT TYPE="button" name="but1" v...
Monday, 14 May 2007
24.
Opening a New Window
(Development/JavaScripts)
...ll right, here's an example code for opening a new window: <FORM> <INPUT type="button"
value
="New Window!" onClick="window.open('jscript/jex5.htm','mywindow','width=400,height=200')...
Monday, 14 May 2007
25.
Redirection
(Development/JavaScripts)
...vigation. Using the top.frames.length object, you can find out if the page is in a frame or not. If the
value
is zero, the page is not in a frame. If it is greater than zero, the page is inside a fr...
Monday, 14 May 2007
26.
Browser Detection
(Development/JavaScripts)
... function: var browserVer=parseInt(navigator.appVersion); Now, it returns only the integer
value
and not something like version 4.51. It just sends back 4 in that case. Thus, we could a...
Monday, 14 May 2007
27.
Confirmation Boxes
(Development/JavaScripts)
..."); The trouble is, if you use just that it isn't very useful. The confirmation box will return a
value
of true or false, so this is what we must use to make use of the confirmation box. An ea...
Monday, 14 May 2007
28.
Passwords
(Development/JavaScripts)
...creates the prompt for the user to enter a password. Whatever the user enters in the prompt will be the
value
of the variable "password". if (password==pass1) alert('Password Correct! Clic...
Monday, 14 May 2007
29.
JavaScript Prompts
(Development/JavaScripts)
...IPT> </BODY> The first thing that happens is that the variable yourname is assigned the
value
it receives from the user from the prompt. So the variable yourname will be a string o...
Monday, 14 May 2007
30.
Variables, Functions, Operators, Conditionals
(Development/JavaScripts)
... <HEAD> <SCRIPT language="JavaScript"> <!--hide from old browsers var name=
value
; //--> </SCRIPT> </HEAD> Here is what these commands mean...
Monday, 14 May 2007
31.
JavaScript Alerts
(Development/JavaScripts)
... your page. You won't need the SCRIPT tag for this one. <FORM> <INPUT type="button"
value
="Click here to see what I think of YOU!" onClick="alert('You are the greatest person I...
Monday, 14 May 2007
32.
Using Buttons for JavaScripts
(Development/JavaScripts)
...ample of the HTML that will place a button on the page: <FORM> <INPUT type="button"
value
="Click Me" name="button1"> </FORM> This will place a button on your pag...
Monday, 14 May 2007
33.
Kako vidit zabranjenjene slike sa imageshacka
(Development/Hrvatski tutorijali)
..., Netscape 1) Otvorite about:config. 2) nađite network.http.sendRefererHeader. 3) namjestite
value
na 0 ili 1) Otiđite na ovu stranicu http://www.stardrifter.org/refcon...
Sunday, 13 May 2007
34.
Multiboot: windows, linux i macOS na jednoj masini
(Development/Hrvatski tutorijali)
Kako instalirati windowse, linux i macOS na jednu masinu... + video tutorial 1. izbrišeš sve particije 2. kreiraš jednu primary NTFS, instaliraš XP 3. instaliraš u XP boot loader acronis selector o
Sunday, 13 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