Related Articles
How to Get/Create Google Analytics HeatMap Plugin on Websites or Blogs
If you have a website or blog then using Heat Map analytics you can know more details of your website like how many users visited, Page Views, Unique Pageviews, Time Spent on the website etc., and there is a free Heat Map tool from Google which you can create/implement or use on your websites. Google […]
Simple PHP Dropdown Menu Example
<html> <title>PHP Dropdown Menu Example</title> <head></head> <body> <form method=”POST” action=”phpdropdown.php”> <select name=”user”> <option value=”vivek” selected=’selected’>Vivek</option> <option value=”Raj”>Raj</option> <option value=”Vicky” >Vicky</option> </select> <input type=”submit” name=”go” value=”Go”> </form> </body> </html> <?php if(isset($_POST[“user”])) { $user = $_POST[“user”]; echo $user; } ?> To get selected value use this < option value=”vivek” selected=’selected’>Vivek </ option> Use this at top for […]
How to Create document using VB Script
To create a document using VB script you need a text editor and use the below code. VB script must be ended by using .vbs VB script runs only on Internet Explorer browser. <script type=”text/vbscript”>Set word = CreateObject(“Word.Application”)Set ActiveDocument = word.Documents.Add()ActiveDocument.TypeText “My first document”ActiveDocument.TypeParagraph()ActiveDocument.SaveAs(“c:sample.doc”)</body></script>