скрипты

Статус
В этой теме нельзя размещать новые ответы.

CTAS

Новичок
Заблокирован
люди подилитесь :angry: какиенибуть скриптами=) для HTML строничкт

млин сори за опичатку устал я :rolleyes:
 

Mike22

Местный
А, что эти скрипты делать то должны ?
Или это не важно, главное чтобы скрипты были ?
 

FRei_

Новичок
люди подилитесь :rolleyes: какиенибуть скриптами=) для HTML строничкт
на какой-нибкдь скрипт =)
Код:
<html>
<head>
<script language=javascript type=text/javascript>
var res;
res=(screen.width+' x '+screen.height) 
</script>
</head>
<body>
<p>
Разрешение вашего экрана<br>
<script language=javascript type=text/javascript>
document.write(res);
</script>
</body>
</html>
 

Cross

Уже освоился
на какой-нибкдь скрипт =)
Код:
<html>
<head>
<script language=javascript type=text/javascript>
var res;
res=(screen.width+' x '+screen.height) 
</script>
</head>
<body>
<p>
Разрешение вашего экрана<br>
<script language=javascript type=text/javascript>
document.write(res);
</script>
</body>
</html>
как у тя скриптов много!!!!! :)
 

Cosinus

Новичок
<head>
<title>Динамическое изменение заголовка окна и его статусной строки. </title>

<script language="JavaScript">
/*
Динамическое управление строкой состояния
Библиотека скриптов Юрия Сергеева <ysergeev@mail.ru>
*/
<!-- Начало
var hellotext="Пример динамического изменения строки состояния окна."
var thetext=""
var started=false
var step=0
var times=1

function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
window.status = hellotext;
setTimeout("anim()",1);
}
thetext = hellotext;
}
}

function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}

function anim()
{
step++
if (step==7) {step=1}
if (step==1) {window.status='--> '+thetext+' <--'}
if (step==2) {window.status=' --> '+thetext+' <-- '}
if (step==3) {window.status=' --> '+thetext+' <-- '}
if (step==4) {window.status=' -->'+thetext+'<-- '}
if (step==5) {window.status=' --> '+thetext+' <-- '}
if (step==6) {window.status=' --> '+thetext+' <-- '}
setTimeout("anim()",200);
}
// Конец -->
</script>

<script language="JavaScript">
/*
Динамическое изменение заголовка окна
Библиотека скриптов Юрия Сергеева <ysergeev@mail.ru>
*/
<!--
welcometext();
//-->
</script>
<script><!--
var tit = document.title;
var c = 0;

function writetitle()
{
document.title = tit.substring(0,c);
if(c==tit.length)
{
c = 0;
setTimeout("writetitle()", 3000)
}
else
{
c++;
setTimeout("writetitle()", 200)
}
}
writetitle()
// -->
</script>

</head>
 

~VLAS~

-+-+-
<head>
<title>Динамическое изменение заголовка окна и его статусной строки. </title>

<script language="JavaScript">
/*
Динамическое управление строкой состояния
Библиотека скриптов Юрия Сергеева <ysergeev@mail.ru>
*/
<!-- Начало
var hellotext="Пример динамического изменения строки состояния окна."
var thetext=""
var started=false
var step=0
var times=1

function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
window.status = hellotext;
setTimeout("anim()",1);
}
thetext = hellotext;
}
}

function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}

function anim()
{
step++
if (step==7) {step=1}
if (step==1) {window.status='--> '+thetext+' <--'}
if (step==2) {window.status=' --> '+thetext+' <-- '}
if (step==3) {window.status=' --> '+thetext+' <-- '}
if (step==4) {window.status=' -->'+thetext+'<-- '}
if (step==5) {window.status=' --> '+thetext+' <-- '}
if (step==6) {window.status=' --> '+thetext+' <-- '}
setTimeout("anim()",200);
}
// Конец -->
</script>

<script language="JavaScript">
/*
Динамическое изменение заголовка окна
Библиотека скриптов Юрия Сергеева <ysergeev@mail.ru>
*/
<!--
welcometext();
//-->
</script>
<script><!--
var tit = document.title;
var c = 0;

function writetitle()
{
document.title = tit.substring(0,c);
if(c==tit.length)
{
c = 0;
setTimeout("writetitle()", 3000)
}
else
{
c++;
setTimeout("writetitle()", 200)
}
}
writetitle()
// -->
</script>

</head>

Ну а чё это??
 

~VLAS~

-+-+-
Код:
<?php
/*****
index.php:
Display a message about the scripts
author: jez hancock
support: http://forums.munk.nu/forumdisplay.php?fid=1
date:		$Date: 2003/03/21 01:15:05 $
version:	$Id: index.php,v 1.3 2003/03/21 01:15:05 root Exp root $
*****/
include_once("config.php");

// page title:
$title="PHP Simple Authentication Using MySQL and PHP sessions";
?>
<html>
<head>
<title><?php print $title ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php doCSS()?>
</head>
<body>
<h1><?php print $title?></h1>
<p>This is a very simple site to demonstrate a functional multi-user website using PHP sessions and MySQL for authentication.</p>
<br>


<h2>Files used in the PHP SimpleAuth package</h1>
<p>The site consists of the following front-end scripts:</p>
<ul>
<li><a href="join.php">join.php</a> - a script to allow users to create a new user account</li>
<li><a href="login.php">login.php</a> - a script to allow users to login to the site</li>
<li><a href="members.php">members.php</a> - a script which loads when a user successfully logs in</li>
</ul>

<p>The following backend scripts are used:</p>
<ul>
<li>config.php - contains configuration info such as mysql login/pass/host/db details and other items used through the site</li>
<li>functions.php - contains all functions used in the simpleauth package</li>
<li>users.sql - contains the MySQL to build the &quot;users&quot; table</li>
</ul>
<br>
<h2>Support</h2>
There is now a forum for support related questions for <a href="http://simpleauth.munk.nu/">SimpleAuth</a> located here:<br>
<a href="http://forums.munk.nu/forumdisplay.php?fid=1">SimpleAuth Forum</a><br><br>

Have fun!<br>
Jez
</body>
</html>

Правда не знаю чё это.. :blink: :( :(
 
Статус
В этой теме нельзя размещать новые ответы.
Сверху