Versione Italiana [ ...in italian ]
 Services Js Dynamic
Subscribe to our courses : JavaScript on NetMeeting Php  home





PhpBB reserved  Forum
PHP MySQL APACHE
TUTORIALS & SETUP
Package : CLONE € 70
WEBHOSTING € 30
MEMBERSHIP € 50
Choose your UsernameChoose a Password
... shortcut your learning php path :-)

Order NOW
Site content :
Date object examples
Virtual shop implementation details
NetMeeting implementation guidelines and tips
A site section completely managed with JavaScript-cookies
A deep analysis of bgColor object and hexadecimal system to manage this object
Top



Services description

Subscription for one Year costs € 50
Site is in English/Italian language, some pages and sections are not bilingual, (the administration recommend to use altavista babelfish program to help where necessary)
In the restricted area the member will find A lot of JavaScript applications and examples where source code is outlayed in transparency, he is authorized to copy and use the scripts he likes, but living the desired merits for the authors, nested as comments into source code, where required.

Among the arguments the member will find :
  • The password system implementation of this site and other system client-side, fonts of scripts will be revealed and usefull tips for implementing the system will be available.
  • The combining methods for the forms handling which is very usefull also for other applications, such as Virtualshops.
  • Tips to implement a FormMail cgi-bin, to improve the security in web-data transmission.
  • The restricted areas is a section-site completely managed with cookies in JavaScript combined with a medium-high password system, where preferred pages may be choosen and saved in a confortable navigation bar.
  • Advanced scripts on JavaScript objects like Date, bgColor, Array, Image, Forms. Note
  • A tutorial on Microsoft Image Composer, included into Frontpage-Microsoft to manage images for the web and able to elaborate and modify animated Gifs.[ The animated Origami-Stork in this page is an example of it and our own project ]


Note


Obviously the member is required to have a basic background in html and the knowledge of JavaScript "comments" management besides accuracy in Copy & Paste and know-how in saving files.
Our webmasters will try to help extemporarily the members when required and possible.
The following links are examples of Copy & Paste of increasing difficulty :
For a beginner the basic Demo contains the step by step procedure to Copy & Paste & Save the script
"The Super Watch"

The links above are style-examples you will find in our pages.     Top
Send data






The Super Watch


Test this script [click on the link aside]   
  1. Select & copy the code on the right cell from <form name=ironico>... to </form>
  2. Open a text editor program.
  3. Paste the code into the new file
  4. Click on menu File and choose : Save as...
  5. In the pop up window "Save as" rename with Watch.html
  6. Choose a folder wherein to save and click "Save as..."
  7. The file is now ready to be opened and work on your Pc, so just double click on it and you should get this result, if so, then you are skilled enough to start programming...
Obviously the page must be completed with all html tags such as title, head, body etc... (the script would work anyway)
PHP programming is quite similar ... you only need a PHP webserver that provides you with the php extensions or a subdomain in our affiliated website.
( basic )
<form name=ironico>
<input type=text name=ironicotxt value="This is a Super Watch"size=34>
<script language=javascript>
<!--
function TimePlease()
{(document.forms.ironico.ironicotxt.value=' Same time of yesterday at this time !');}
document.write('<br><b><i><a href=javascript:TimePlease()>What time is it <font size=6>?</font></a> </i></b>   <input type=reset value=reset>')
//-->
</script> </form>


Blink in Internet Explorer
( advanced )
NB :This script is used at the link "Description" in this page, to use it twice you need to change a few variables'names.
<!--Start Copy & Paste-->
<Script language="JavaScript1.2">
<!--
/* In a Netscape browser this Script is trasparent and text description normally blinks ! */
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];}}
var ctext = "description";/*Change this text description and if single quote are used let them be preceded by a backslash for example : "Time's break" must be written :
var ctext = "Time\'s break";*/

var x = 0;/*Script continues in right cell*/
var color = new initArray(
"red",/*Change color here.*/
"blue",/*Change color here.*/
"lime",/*Change color here.*/
"white");/*To add new colors set a comma after the double quote of white and add for example : "brown");...etc*/
if (navigator.appVersion.indexOf("MSIE") != -1)
{document.write('<span id="c">'+ctext+'</span>');}
function chcolor(){
if (navigator.appVersion.indexOf("MSIE") != -1)
{document.all.c.style.color = color[x];}
(x < color.length-1) ? x++ : x = 0;}
setInterval("chcolor()",250); //Blinking Frequence
if(navigator.appName == "Netscape")
{document.write("<blink>"+ctext+"</blink>");}
//-->
</script> <!--Copy & Paste End-->






Why submitting ?
To reference our work and estabilish a contact !
Certainly you have experienced to contact some file Author for inquire ! Have you got an answer ? Most of the time your inquire is not even read, but authomatically you receive an e-mail telling you to search the answer in the faq - page.
(When we will get hundred visits a day we will do the same !)
We are not selling anything, but we just want establish a bilateral constructive contact, and if a member comes up with some remark or bug report, we verify and thank him for the help.   mea culpa
Send data Top







Warning

It is fair to recognize that many scripts are trown across wildly sometimes, I do not remember straight away why I have taken out some code, but it happens that during a get deeper-section, other arguments come across and is possible to get practically lost, this is something to what members must be prepared, but this is rather common and also the idea that code must have an immediate referenced utility ( the moment it will be very usefull to know how to reach the fourth character in a string included into a script, soon or later, will come )

To have an idea of the restricted area pages - style you may visit without registration :
Workshop per JavaScript e Dynamic html and free pages of   www.ics3w.com/index.html
A difficulty that you will find everywhere in this site is facing pages'layouts a little congested, for the effort to keep the pages under visual control, without being forced to scroll pages continuosly.
For the last the tendency to nest the nestable ( like chinese boxes ) sometimes may be annoying, but we think this is positive to exercise programming.
Must be also very clear that restricted area pages are not a complete JavaScript tutorial but only free subjects themes, which have the purpose to show the effect of JavaScript code on a web page. What you are copyng and pasting from these pages is on your complete responsability and choice and without any warranty from our site.
Send data Top




The nestable
Two more Layouts for the same result, to the right the JavaScript Interpreter does all the job
On the left the form + the script + the link
Let's get back to the script "The Super Watch" two more layouts are possible, the first is of immediate and clear comprehension, to the right is all included into the JavaScript Tags and the Interpreter does all the Job (text-formatting included).
Before pasting these layouts together in the same page it is necessary to rename one of the form and one function TimePlease() to avoiding JavaScript errors.
<form name=ironico>
<input type=text name=ironicotxt value="This is a Super Watch !"size=34>
<input type=reset value=reset>
</form>

<script language=javascript>
<!--
function TimePlease()
{(document.forms.ironico.ironicotxt.value=' Same time of yesterday at this time');}
//-->
</script>
<a href=javascript:TimePlease()>What time is it <font size=6>?</font></a>
<script language=javascript>
<!--
function TimePlease()
{(document.forms.ironico.ironicotxt.value='\
Same time of yesterday at this time');}
document.write('<form name=ironico>\
<input type=text name=ironicotxt value=\
"This is a Super Watch !\"size=34>\
<br><b><i><a href=javascript:TimePlease()>\
What time is it <font size=6>?</font></a>\
</i></b> <input type=reset value=reset></form>')
//-->
</script>