Search
Search Keyword example
Total 35 results found. Search for [ example ] with Google

Results 1 - 35 of 35
1. What is PHP (Hypertext Preprocessor)
(Development/PHP & MySQL)
...ive you more flexibility as they can do many things that are almost impossible to do with JavaScript — for example, working with files and databases, or advanced manipulation of images. Naturally, suc...
Monday, 18 May 2009

...onent for SEO urls on Joomla 1.0.x. Link to root of my sections and categories end with /index.html for an example: http://www.vitez-studios.com/section/category/index.html However, I have found out t...
Thursday, 24 April 2008

3. CSS Shorthand Guide
(Development/Tutorials)
... ran into a specification (besides the confusing mess at the W3C), it turns into showing off a couple of examples and you’re supposed to be set on your way. Well well. Over the years, I’ve found qu...
Wednesday, 27 February 2008

4. Glossary of Technical Terms
(Development/Tutorials)
... the IP address to which the user would be sent for each domain name. For example, you can have abc.you.com point to one IP address, and xy...
Wednesday, 12 December 2007

5. NTLDR is Missing
(Development/Tutorials)
... is booting verify that your computer BIOS has the proper boot settings. For example, if you are attempting to run the install from the CD-ROM make sure th...
Sunday, 09 December 2007

...commands together Often you will find you need to use different commands on the same line. Here are some examples. Note that the | character is called a pipe, it takes date from one program and pip...
Wednesday, 03 October 2007

7. JavaScript Timing Events
(Development/JavaScripts)
... from now you want to execute the first parameter. Note: There are 1000 milliseconds in one second. Example When the button is clicked in the example below, an alert box will be displayed aft...
Sunday, 17 June 2007

8. Detecting a particular browser
(Development/JavaScripts)
Our next example shows you how to detect a particular browser. As mentioned earlier, this is useful because you could have a page that supports JavaScript for only Netscape 3.0, the
Sunday, 17 June 2007

9. PHP - Using Forms
(Development/PHP & MySQL)
...T or $_GET instead so you will know from what method did the values come from. Here is an example of HTML form :   <form method="post" action="&...
Sunday, 10 June 2007

10. PHP - Using Functions
(Development/PHP & MySQL)
Using FunctionsReal 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

11. PHP - Control Structures
(Development/PHP & MySQL)
Control StructuresReal 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 f
Sunday, 10 June 2007

12. PHP - Playing With Strings
(Development/PHP & MySQL)
...are expanded too. However, with single-quoted strings none of those thing happen. Take a look at the example below to see what I mean. Note that browsers don't print newline characters ( \r...
Sunday, 10 June 2007

13. PHP - Variable Types
(Development/PHP & MySQL)
... Two compound types: array object And finally two special types: resource ( one example is the return value of mysql_connect() function) NULL   In PH...
Sunday, 10 June 2007

14. PHP Variables
(Development/PHP & MySQL)
...starts with a letter or underscore, followed by any number of letters, numbers, or underscores. Example : <?php $myvar         ...
Sunday, 10 June 2007

15. Opening & Ending PHP Tags
(Development/PHP & MySQL)
...all PHP code in this website I will use the second pair, <?php and ?>. Now, for the first example create a file named hello.php ( you can use NotePad or your favorite text edito...
Sunday, 10 June 2007

16. Installing Apache PHP and MySQL
(Development/PHP & MySQL)
...ww.php.net MySQL : www.mysql.com You should get the latest version of each packages. As for the example in this tutorial i'm using Apache 2.0.50 ( apache_2.0.50-win32-x86-no_ssl.msi ...
Sunday, 10 June 2007

17. Get the Viewer's Screen Resolution
(Development/JavaScripts)
... The properties hold the values of the pixel length of the width and height of the viewer's screen. For example, you could send the viewer an alert when a link is clicked that gives the screen re...
Monday, 14 May 2007

18. Advanced String Handling
(Development/JavaScripts)
...ld return the number 5. To use the method, you will want your string to be placed in a variable. For this example, we will simply assign a string to a variable:   var my_car="Ferrari"; ...
Monday, 14 May 2007

19. The Date Object: with Clocks
(Development/JavaScripts)
A two-part section on the date object, using the creation of two javascript clocks as examples. Now, you would like to have a clock for your web page- but how do you go about coding such a cloc
Monday, 14 May 2007

20. External JavaScripts
(Development/JavaScripts)
...ut they use an extra attribute: The src="http://someplace.com/script_name.js" attribute. Here is an example of one of these tags: <SCRIPT language="JavaScript" src="http://www.yoursite.c...
Monday, 14 May 2007

21. JavaScript and Frames
(Development/JavaScripts)
...ft side (jex13.htm) will have this html code:   <HTML> <HEAD> <TITLE>JavaScript Example 13</TITLE> </HEAD> <BODY> <FORM> <INPUT type="button" valu...
Monday, 14 May 2007

22. JS Rollovers/Hover Buttons
(Development/JavaScripts)
...self two images of the same size, making whatever changes you would like to the second one. Below is an example where I chose to make an image with blue text and one in red text. The red-text im...
Monday, 14 May 2007

23. Preloading Images
(Development/JavaScripts)
..., and so on. Adjust your width, height, and urls accordingly. You will have two lines for each image. For example, to preload three images, you would use a code like this:   <SCRIPT langua...
Monday, 14 May 2007

24. JavaScript Arrays
(Development/JavaScripts)
... <A href="javascript:display_quote2()">Click Here, I dare you!</A> </BODY> The examples here could annoy people, but they do show you how arrays can be useful. There are ce...
Monday, 14 May 2007

25. The setTimeout Function
(Development/JavaScripts)
..., we have 1000 milliseconds, which will be 1 second. Now, what can you do with it? Let me start with an example that shows you the setTimeout function in action. Click the button to the right of ...
Monday, 14 May 2007

26. Using Link Tags For Scripts
(Development/JavaScripts)
...alternative for those with older browsers that don't recognize the onClick=" " command. As in the above example, you can also use an image inside your link tag to make a clickable image. ...
Monday, 14 May 2007

27. Opening a New Window
(Development/JavaScripts)
...copy the old browser window's history list to the new window. All right, here's an example code for opening a new window: <FORM> <INPUT type="button" value="N...
Monday, 14 May 2007

28. Passwords
(Development/JavaScripts)
...ection. OK, I finally got around to writing the javascript password protection tutorial. You will see the example script here is pretty straightforward, but it is also pretty easy to get around. I...
Monday, 14 May 2007

...ean Values This one is nice. Assign the variable a value of true or false. No quotes needed. Here's an example: var story=true; The null Value If you declare something as null, it mea...
Monday, 14 May 2007

30. JavaScript Alerts
(Development/JavaScripts)
...ript commands. Want the code that did this? Here you go! <HEAD> <TITLE>JavaScript Example 2</TITLE> <SCRIPT language="JavaScript"> <!-- alert('Plea...
Monday, 14 May 2007

31. Using Buttons for JavaScripts
(Development/JavaScripts)
...n on the page. To do this, you will need to use the <FORM> tags around the button tag. Here is an example of the HTML that will place a button on the page: <FORM> <INPUT ...
Monday, 14 May 2007

32. onMouseover: Your first Script
(Development/JavaScripts)
... your choice to the browser's status bar when you move your mouse over a link. Let's look at the example: <A href="jmouse.htm" onMouseover="window.status='Hi there!&...
Monday, 14 May 2007

33. The Basics- JavaScript Tutorial
(Development/JavaScripts)
...aded before the page begins to display, and you won't see all kinds of JavaScript errors. Here is an example: <HEAD> <TITLE>My World</TITLE> <SCRIPT language="Ja...
Monday, 14 May 2007

34. Send anonymous emails
(Development/Tutorials)
...rmally enter the recipient of your email, enter the email address of the remailer you wish to use. For our example we are using remailer@bigapple.yi.org, so we will type in remailer@bigapple.yi.org. ...
Saturday, 12 May 2007

35. PHP & MySQL
(Category Blog)
Tutorials, code examples, tips and tricks for PHP and MySQL development.

<< Start < Prev 1 Next > End >>

When a webpage requires registration
 

Login






Lost Password?
No account yet? Register

Tools

Coming soon...

Syndicate