Make your PC speak
Published: March 27, 2012
Now you can create your own text to speech converter software to make your computer speak whatever you type. This is a VBS script trick and It’s pretty cool. Just run this script and make it read any funny sentence. Copy the code given below in notepad and save it as anyname.vbs. Make sure that you save it as .vbs file.
Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
Note: If copy paste doesn’t work then you have to type the code yourself. (Make sure of the double quotes used in the code in the copy/paste case)
After making a vbs file just double click on that file and type anything you want in the textbox
HTML Forms – Some
Basics about Forms in HTML
Published: April 2,
2012
If you’ve been on the Internet for a while, you’ve probably
filled out a number of online forms. Forms are used to obtain information from
your visitors right through your website. Your visitors can input their
information into your form, click on a “submit” button and their information
will be directed to a location you specify.
This article will take you step by step through the process of
setting up a form on your website.
To insert a form on your web page, we will begin with
. All of the FORM elements will be
placed between the FORM tags.
In order for a form to function, it first needs to know how to
send the information to the server. There are two methods, GET and POST.
METHOD=”GET” – This method will append all of the
information from a form on to the end of the URL being requested.
METHOD=”POST” – This method will transmit all of the
information from a form immediately after the requested URL. This is the
preferred method.
In addition to a form needing to know how to send the
information, it also needs to know where to send the information to be
processed. The ACTION attribute will contain the URL to the form processing
script (written in any web-programming language like – php, asp, etc.) or it
may contain an email address.
Example Form – 1:
Name:
Email:
Example Form – 2:
Name:
Email:
In the first example, the email form will simply process the
information that is placed within your form and send it to your email address.
However, in the second example, the information entered in the
form will be sent to the “sendmail.php” script following the METHOD mentioned.
The values will be processed by the “sendmail.php” script and accordingly the
email will be sent.
* Notice when the ACTION attribute references an email address,
you don’t have to include the METHOD attribute.
Spice
up your Website
Published: August 20,
2012
If you’re looking for some HTML/PHP codes and tips to spice up
your web site, you’ve come to the right place.
When you begin designing your web pages, you may find that many
HTML courses fall short when it comes to providing you with special effect.
However, there are many special effect codes that will enable
you to enhance your visitors experience tremendously.
You will find a variety of such codes and tips here.


1 comment:
G8
Post a Comment