Source code & documentation
  • Source codes & documentation
  • Backtracking recursiv & iterativ
  • Web design and programming

Widely used Web programming languages ​​are HTML (DHTML, XML, etc.), CSS, JavaScript, ASP, PHP and database MySQL is preferred. Languages​​   . NET enable writing code in a language known as user will run to generate web page.

First , we ​generate an transition effect for two pages. Meta labels can generate errors .
​Meta labels is very usefull in description , seo stragies etc
Click to set custom HTML
Picture
First image

<iframe width="420" height="315"
src="https://www.youtube.com/embed/....."
>

</iframe>
YouTUBE adds needs embed html code like this.
If don't play automatically but with option autoplay=1 with/without loop=1 plays start without hit click . 
Insert page stat message and scroll

This code work without tags head, body etc <script language="javascript" type="text/javascript">
function dosomething()
{
document.writeln("text<hr>");
self.scrollto(0,0);
}
window.status="in any moments we test the future";
window.scrollbar="true";
dosomething();
</script>
<br>
b
<br>
c
<br>
d
<br>
Picture
Second image

Page 1 present this HTML code

<html>
<head>
<meta HTTP-EQUIV="Page-Enter" CONTENT=RevealTrans(Duration=20,Transition=15)">
<meta HTTP-EQUIV="Page-Exit" CONTENT="RevealTrans(Duration =20, Transition=21)">
</head>
<body style="background-color:red">
<a href="pagina2.html" >
pagina 2 </a>
  The wave will only work in Internet Explorer  and above for Windows.Posible errors in other browsers  and operating sistems.
<img src="anime.bmp" height ="90%" style="FILTER: wave(freq=3, strength=6)">.
</body>
</html>    

Page 2 are code after :  

<html>
<head>
<meta HTTP-EQUIV="Page-Enter" CONTENT=RevealTrans(Duration=20,Transition=2)">
<meta HTTP-EQUIV="Page-Exit" CONTENT="RevealTrans(Duration =20, Transition=3)">
</head>
<body style="background-color:red">
The wave will only work in Internet Explorer  and above for Windows.
<img src="anime1.bmp" height ="90%" style="FILTER: wave(freq=20, strength=8)">.
<a href="pag1.html" >
pagina 1 </a>
</body>
</html>

Iframe page or frameset page offer extern contents , practically  lots of minimized page .  
II. example  code JavaScript Ideea - offer file for download .

exemple_javascript.txt
File Size: 6 kb
File Type: txt
Download File

For php and XHTML transitional forms sugest this model :

<html>
<head><title >  form </title></head>

<body>
<fieldset>
<center>
<legend>
<p>

<b>
 <font size="+3" color="#FAF">                      
Form with  name & e-mail </b>
</p> </font>
</legend>
</div>
<form action="foo.php" method="post">
    Name:  <input name="username" /><br />
    Email: <input name="email" /><br />
    <input name="submit" value="Submit me!" />
</form>
</fieldset>
</body>
</html>
 
php file content
<?php
// Available since PHP 4.1.0

   echo $_POST['username'];
   echo $_REQUEST['username'];

   import_request_variables('p', 'p_');
   echo $p_username;

// Available since PHP 3. As of PHP 5.0.0, these long predefined
// variables can be disabled with the register_long_arrays directive.

   echo $HTTP_POST_VARS['username'];

// Available if the PHP directive register_globals = on. As of
// PHP 4.2.0 the default value of register_globals = off.
// Using/relying on this method is not preferred.

   echo $username;
?>
Test is very simple in Apache servers .


Powered by Create your own unique website with customizable templates.