Login   Register  
PHP Classes
elePHPant
Icontem

File: php.html

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Muhammad Arfeen  >  TemplateEngine  >  php.html  >  Download  
File: php.html
Role: Auxiliary data
Content type: text/plain
Description: HTML Template
Class: TemplateEngine
Template engine that replaces marks with variables
Author: By
Last change: Previousl contents were wrongly entered.
Date: 2009-03-03 20:40
Size: 899 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>[TENG_Title]</title>
<script language="javascript">

function CheckField(){

if(document.getElementById("textvalue").value==""){
	alert("[TENG_Alert]");
	return false;
	}

}

</script>
</head>



<body>
<form action="[TENG_FormAction]" method="get">

<input name="textvalue" type="text" id="textvalue"/>
<input type="button" value="[TENG_ButtonLabel]"  OnClick="return CheckField();">
</form><p><p> This is the example of [TENG_Example] 
<p>Some more place holders will be invisble even if the value will not be supplied 

<p>[TENG_MoreHolders] and
<p>[TENG_MoreHolders2]

<p>

<p>

<p>

</body>
</html>