0
CSS or Table?
CSS or Tables?
What is CSS?
CSS stands for cascading style sheets. They are the new technology used to layout and style web pages.
So what happened to old, trusty tables?
For long tables were the only tool available to the web developers to...
Custom Error Pages Using .htaccess
A Simple Method To Create Custom Error Pages
The first use of the .htaccess file which I will cover is custom error pages. These will allow you to have your own, personal error pages (for example when a file is not found) instead of using your...
HTML E-mail Using PHP
There are two varieties of email. Text and HTML. Text email is like regular text messages. HTML email is like viewing a webpage with colors and images. To create the effect of an HTML email, a couple of extra headers must be added.
$to = "admin@mistonline.in";
$subject...
Text auto slide information box using javascript.
This is a very simple information box which will have an array of text. This is displayed as a slide show.Check this out.
DOWNLOAD THE JS part from here
Javascript Download
And this is our HTML
<center>
<form name="messages">
<input...
New horizontal drop down menu using css
Very simple and stylish looking standard horizontal dropdown menus using CSS.
This is the CSS part
<style>
.menu{
border:none;
border:0px;
margin:0px;
padding:0px;
font: 67.5% "Lucida Sans Unicode", "Bitstream Vera...
Calendar Script Using Javascript [Updated]
Here is a simple script for creating calendar on webpages
<script LANGUAGE="JavaScript">
//Code from Mistonline.in
<!-- Begin
monthnames = new Array(
"January",
"Februrary",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"Decemeber");
var...
Single and Multiple selection listbox
This is a very simple example where we can have single and multiple selection list box without the help of JAVASCRIPT, we are using only HTML, here is the code.
<html>
<head>
<title>Single / Multiple Selects</title>
</head>
<body>
Drop...
Learn CSS Basics Very Simple Tutorial
The CSS tutorial.
What is CSS?
CSS is the technology used to make the layout for webpages. They are Cascading
Style Sheets, used to style your HTML documents. They are slowly replacing tables
as the preferred medium to layout your pages. They...
Find Absolute Path Of A File Or Directory Using PHP
The absolute path for a file or directory is not the same as the URI. The absolute path on the web server is/home/DIR/Xs/something/mydir/. Here is how to find the absolute path on your web host for a given directory if you can’t find it,...
Close Event In Javascript Using OnUnload()
Close Event In Javascript Using OnUnload fuctions, its pretty simple.Check this out.
<html>
<body onunload=check()>
<script type=”text/javascript”>
function check()
{
a = “Mistonline.in”
alert(a)
}
</script>
</body>
</html>
Thanks...
Close Event In Javascript For Firefox, IE and Chrome
Hi guys here is the event that gets triggered when ever a browser [Internet Explorer, Firefox, Chrome] is closed.
Its very simple just check out the script
<html>
<body>
<script type="text/javascript">
window.onbeforeunload...
Pass PHP Value To Javascript
This is a simple script to pass values from our server side language PHP to the client side script JAVASCRIPT.
Its pretty simple we have two php files.
CONTACT.php and SEND.php
in that you can see like values which we enter in contact.php...
How To Set And Get Cookies Using PHP
Here is a simple code that explains how a cookie is set and retrieved using php.
A cookie is set with the following code: setcookie(name, value, expiration)
$Month = 2592000 + time();
//this adds 30 days to the current time
setcookie(MyVisit,...
