Showing posts with label form. Show all posts
Showing posts with label form. Show all posts

What is Cookie?

What is cookie?
 
Non Technical 
It’s very difficult to find good examples in the real world that can describe the cookies with appropriately. But let's try this one: A doctor will give you a card that will be filled on your circumstances when you first came for a treatment to him and handed the card to you. Every time you come (which may still be associated with the same disease) you submit the card and the doctor can know your progress, and can know you came because of what (for the disease earlier, or because of new diseases). If the doctor is a web server and the patient is a client (browser), then the card is a cookie that will be discussed at this time.

Internal Search Facility for Blog

Website and blog today is more complex than ever. Number of information in a blog can be used by visitors to answer their questions and learn what they need to know before contacting the blog owner.
But with all the information and features that are packed in a lot of blogs today, visitors can also make it more difficult to determine if a blog contains the information they need and then how to find it on her blog. Moreover if a blog has a design and confusing navigation. Internal search facility is the solution to the problem.

Chat with Google Widget

Chatting with the widgets from Google. Many chat widget scattered around the Internet today. But every widget would vary, ranging from appearance to functionality owned.


How to Upload to Web Server

How to Upload to Web Server

Once you register on one free server, then the last step so that the web page you can see all the people are uploading or sending files to a web server.

There are two kinds of means used to send the file to a web server, which is directly through a browser or via FTP (File Transfer Protocol). For that you need to know which method is supported by your web server. For example, www.homepage.com use the browser to upload, use FTP www.virtualave.net www.tripod.com while to be able to use a browser or FTP. Which will be discussed here is to send files using FTP.
Creating Fixed Top or Bottom Bar with CSS
 
Surely you often visit multiple news websites. And often some of the web is having a banner / ad placed on top of the page, or at the bottom of the page, but if you scroll your mouse, drag the page up or down but the ads still appear. 

No Right Click


JavaScript Prevent Right Click

Add the following javascript code between the tags <head> and </ head> of your web page to disable right click. As an example see here.

Back and Forward Button


Creating Back and Forward with java script

On a web page we often see links navigation such as Back to return to the previous page and Forward to go to the page we've ever opened before.

You can create navigation links by using java script like the example below.

<a href="javascript:history.back(1)"> Back </ a>
<a href="javascript:history.forward(1)"> Forward </ a>

JavaScript Standard Objects


JavaScript Standard Objects

In JavaScript is also known JavaScript standard object. These objects are standardized by the ECMA Association (European Computer Manufacturer Association). The following is a list of standard JavaScript objects :

Object Name and Description:

HTML Form Tutorial

HTML Form Tutorial

This post is especially about HTML Form Tutorial so you can make form in HTML document.
Form is used to create forms on web pages. As the name suggests, the form used to take input from the user and will be further processed.
 
Form on web pages is defined by the couple <form> tag and </ FROM>. <form> Tag has two important attributes, namely METHOD attribute to specify how the applicable form, and ACTION attributes are often loaded exact URL form further processing.
Form the basic structure is:
 

<FORM [METHOD="POST|GET]" ACTION="URL">
...
</ FORM>

HTML Input


Input Box
Input is the input box on the form that allows the user to enter a string in one line. To create an input box, HTML provides <input> tag and utilize attribute TYPE = "Text".
 
Another attribute of <input> tag is NAME to declare the name of the input, the VALUE to declare the value of an input, and SIZE to declare the length of an input.