You would be shocked to come across this fact that Facebook engineers can access your Facebook account without your knowledge and above all without entering any of the required details such as Username and Password or recovery e-mail, contact phone number details. Facebook has unveiled people across the globe with an recent
Facebook Engineer’s and Employees Sneaking in to Private Facebook Accounts Recent details provided by the social network giant show who can access your Facebook account and when. There stringent actions and practices are being executed by the tech giant companies like Apple, Google and Yahoo making their services to be secured and protecting them from the hackers, law enforcement and spies agencies. Although, there is a vulnerability of personal data misuse and impersonation of your social life info which have been registered with these tech giants by some its employees.
Director of record label Anjunabeats, Paavo Siljamäki posted a captivating a brief study on his Facebook wall throwing a spotlight over this issue. Facebook post of Paavo Siljamäki states that Facebook engineers at Facebook office in LA logged into his Facebook account after his permission during his visit where he cam across a unusual incident which was Facebook engineers logged into his Facebook account without asking him for the password of his account.
Facebook User is Screwed Without Notification After Stranger Accessing Users’s Account It was a blew out of the water experience for Paavo Siljamäki, as after being logged by the Facebook engineer without facilitating the password, Facebook has failed to caution the user (Paavo Siljamäki) with any alert briefing his private Facebook profile being accessed by some strange person since the company does when any person try’s to log in to a persons Facebook account with out a proper password and username from a strange suspicious device of a different Geo-location
State-run
telecom company, BSNL, has some great news for its mobile
subscribers. In the next phase of network expansion, BSNL plans to
slash 3G network rates by 50 percent.
BSNL is one of
the most budget friendly operators in the market. They offer 3G rates
that are at par with the 2G rates of the private telecom operators.
The officials have said that they cannot reduce the rates at present
as they have utilized 90% if their allotted 3G capacity but they will
slash it as soon as they finish expansion. A sudden, drastic decrease
in 3G rates might lead to an enormous increase in traffic, so the
company wants to ascertain its capability to handle the traffic
before reducing the rates.
BSNL at
present is in its 7th network expansion phase that will cost Rs.4800
crores and is expected to be completed by June of this year. The
company has already started working on the 8th phase and will begin
the process of issuing tenders at the start of the financial year
2015-16 that begins in April.
Under phase-8
of network expansion, BSNL is planning to integrate 3G network’s
with city-wide WiFi hotspots to have a better handle on traffic. With
this process, 3G users will be able to switch automatically between
3G and WiFi networks. This will allow for the traffic to shift
to WiFi which will help free up the 3G space. This unique
approach to handling internet traffic might be good for the company
but might lead to massive battery drain for the consumers. But it
wouldn’t be much of a concern to folks who would be using the BSNL
network at 50 percent of the cost of competing networks. Hopefully,
BSNL’s initiative might encourage other telecom companies to give a
break to their subscribers from massive 3G data bills.
In this session, we will introduce you to the idea of Forms and how
they are used in HTML. You will learn about the basic tags of a HTML
Form and their attributes.
Basically, a HTML Form is used to select and process different types
of user inputs. A Form behaves typically like an interface through which
users can input different elements, e.g., texts, images etc. which in
turn HTML Server will store in a database, process them and return
results to the users.
A Form is created by using the
The basic attributes of a
Attribute Name
Attribute Value
Description
Action
The URL of the server side scripting file which recieves the user input;
it may be any .asp, .php., .jsp, ... type of file.
e.g., http://mysite.com/login/registration.php.
Performs an action with the input entered by the user in the form elemets
EncType
"application/x-www-form-urlencoded": the default value;
"multipart/form-data": used for multiple plain text form data of input element.
This attribute describes the content type that is used to submit the form to the server
Method
Get (default value), Post
It is the HTTP method for sending the form information to the
server; the GET method is used for less secured form information and the
POST method is used for more secured form information
Name
Name given to the form
Specifies a name to the form for client-side scripting
The Action Attribute
The following example will describe you how to input an information
in a form and how the action attribute works to process the information.
Here, a text field and a submit button is created by specifying the input type attribute as "text" and "submit" respectively.
When you input some text in the above text field and click on the
"Submit Query" button, your information will be sent to a file specified
as "html_form_action.asp" in the action attribute. This file will
process your data and return you a page containing the results as
user=your_name. This is not shown here as it is a server side scripting.
The Input Element
The tag is the most used form element. There are many
types of input elements which are specified by the "type" attribute,
e.g.,
Here, type of the input element is a text field which considers only text inputs as its value.
We will now describe how different types of input elements are used in HTML forms---
Text Field:
Text Field in a form allows users to input text elements like text character, numbers etc.
The browser will show the text fields as---
Here, you can insert letters, numbers etc. as text inputs.
Password Field:
Password field allows users to insert characters as password given to some element in a form.
The browser will show this as---
Here, the input type is password in the password field. You will
notice that the characters you type in the password field is visible
only as bullets or asterisks, it will not be displayed to others unlike
the username in the text field.
Create a Button in a Form:
A Button in a HTML form can be created as an input type element. By
clicking a button users request their information to be processed.
In the following example, we create just a simple button; no specific task will be performed by it.
In the browser, it looks like---
The text "Click Me!" put as the value of the button is displayed on the button in the browser.
Submit button
A Submit button can be created as an input element by specifying the
type attribute as "Submit". When an user clicks on a submit button, the
information entered in the form is submitted to the server.
Take the following example---
The browser will show this as---
After entering username and password the user clicks on a submit
button named "Login" which invokes the action attribute to submit the
data to the server.
Reset button
A Reset button is used to reset the information entered in a form
element to the default value or to change the information previously
entered.
Image as a button
We can use an image as a button. For this, the "src" attribute is
added in the input element which gives the URL of an image to be set as a
button. The type attribute is specified as "image" and the value as
"InputTypeImage".
Uploading a File:
To upload a file, we use the input type "File" element in HTML. This can be shown as below---
In the browser, it will be like ---
On clicking the "Browse..." button, you can upload a file from your
database into the server. The URL of the file will be displayed in the
text field provided.
The Hidden Input Type:
The "Hidden" input type element is used by the web authors to hide
some particular form data from the users. It is useful in carrying user
information from form to form as hidden input type for user applications
containing several HTML documents.
In the following example, the e-mailed contents of a form is specified as "hidden" input types---
The above input fields are hidden in the web browser only, they can be still viewed in the HTML document source page.
Radio Button:
A Radio button in a form is used to allow users select only one input out of a given number of options.
In the browser, it looks like---
User can select only one item at a time. Here, the vehicle "bike" is
made "checked" by default. If you select another value, it will become
unselected.
Checkboxes:
Checkboxes are used in a form to allow users select more than one input out of a given number of options.
In the browser, it looks like---
User can select more than one item at a time. Here, the vehicle "motorbike" is made "checked" by default.
The Select Element
The Select element is used in HTML forms to create a drop-down box or
a drop-down list. The Select element has three basic optional
attributes as shown in the following table -
Attribute Name
Attribute Value
Description
Name
A Unique Name
It is used to give a unique name to the drop-down list.
Size
Any Number, e.g., 1, 2, 3, ...
It is used to define the size of a drop-down list.
Multiple
Multiple
It is used to select multiple items at a time from a drop-down list.
A Simple Drop-Down List:
The following example will show how to create a simple drop-down list---
Select a Country:
Each item to be displayed in the list is written in between the option tags .
In the Browser, it will be shown as---
Select a country:
You can see the name of the countries by clicking on the list and
select any one of them you wish to. When you click another name, the
previous one will be replaced by it.
Size of a Drop-Down List:
By specifying a definite value to the "size" attribute in the select
element, we can create a drop-down list of any size. Consider the
following example -
Select a Country:
In the Browser, it will be shown as---
Select a country:
Here, name of three countries will be displayed at a time in the
list. You can make any one of the itmes of a drop-down list as
"selected" by default. In this list "India" is displayed as "selected by
default".
Multiple Selection in a Drop-Down List:
We can select more than one item at a time in a drop-down list. For
this, the value of the attribute "multiple" of the select element, is
specified as "multiple". Consider the following example -
Select a country:
In the Browser, it will be shown as---
Select a country:
Here, you can select multiple countries at a time by "Ctrl+Click" on the desired names.
If you do not specify the size in the select element for a multiple
selection, then all the items in the drop-down list will be displayed. Select a country:
Text Area
A Text Area is an area where users can write an unlimited number of
text characters. A text area is created in a form, using the