Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 26.02.2011, 19:39
Новичок на форуме
Отправить личное сообщение для Волчонок Посмотреть профиль Найти все сообщения от Волчонок
 
Регистрация: 24.02.2011
Сообщений: 7

PHP&JAVA Помогите интегрировать
И так это скрипт бегущий строки как титры снизу вверх и при наведении на него мышки этот скрипт останавливается. Я в джаве 0. И мне просто нужно интегрировать пхп чтобы выплывающий текст выходил из базы данных MYSQL
Вот Джава:
</head>
<script type="text/javascript">

var marqueewidth="100%" //Specify the marquee's width (in pixels) (keep in mind any cell padding and images you may have in your themes).
var marqueeheight="150px" //Specify the marquee's height
var scrollinterval=50 // Specify the refresh rate. This affects speed too. Larger is slower.
var pauseit=1 //Pause marquee onMousever of text area (0=no. 1=yes)?

var marqueecontent=' ssss ';
var direction='up';

if (direction=='up') {
// Scroll upwards start
var marqueespeed=1 // Specify speed (larger is faster 1-10) This is the amount of pixel movement per refresh. 1 is best for smoothness.
marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
	if (iedom){
		cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
		cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		cross_marquee.innerHTML=marqueecontent
		actualheight=cross_marquee.offsetHeight
	}
	else if (document.layers){
		ns_marquee=document.ns_marquee.document.ns_marquee2
		ns_marquee.top=parseInt(marqueeheight)+8
		ns_marquee.document.write(marqueecontent)
		ns_marquee.document.close()
		actualheight=ns_marquee.document.height
	}
	lefttime=setInterval("scrollmarquee()",scrollinterval)
}
window.onload=populate

function scrollmarquee(){
	if (iedom){
		if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8)) {
			cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
		}
		else {
			cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		}
	}
	else if (document.layers){
		if (ns_marquee.top>(actualheight*(-1)+8)) {
			ns_marquee.top-=copyspeed
		}
		else {
			ns_marquee.top=parseInt(marqueeheight)+8
		}
	}
}
function scrolldown(){
copyspeed=marqueespeed-3;

}
function scrolldoubleup(){
copyspeed=marqueespeed+3;

}
var txt='';
if (iedom||document.layers){
	with (document){
		if (iedom){
			txt+='<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">'
			txt+='<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">'
			txt+='</div></div>'
		}
		else if (document.layers){
			txt+='<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">'
			txt+='<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>'
			txt+='</ilayer>'
		}
	}
}
}
// Scroll upwards end


// Scroll downwards start
else {
var marqueespeed=-1 // Specify speed (larger is faster 1-10) This is the amount of pixel movement per refresh. 1 is best for smoothness.
marqueespeed=(document.all)? marqueespeed : -1
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
	if (iedom){
		cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
		cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		cross_marquee.innerHTML=marqueecontent
		actualheight=cross_marquee.offsetHeight
	}
	else if (document.layers){
		ns_marquee=document.ns_marquee.document.ns_marquee2
		ns_marquee.top=parseInt(marqueeheight)+8
		ns_marquee.document.write(marqueecontent)
		ns_marquee.document.close()
		actualheight=ns_marquee.document.height
	}
	lefttime=setInterval("scrollmarquee()",scrollinterval)
}
window.onload=populate

function scrollmarquee(){
	if (iedom){
		if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8)) {
			cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
		}
		else {
			cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
		}
	}
	else if (document.layers){
		if (ns_marquee.top>(actualheight*(-1)+8)) {
			ns_marquee.top-=copyspeed
		}
		else {
			ns_marquee.top=parseInt(marqueeheight)+8
		}
	}
}
function scrollup(){
copyspeed=marqueespeed+3;

}
function scrolldoubledown(){
copyspeed=marqueespeed-3;

}
var txt='';
if (iedom||document.layers){
	with (document){
		if (iedom){
			txt+='<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">'
			txt+='<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">'
			txt+='</div></div>'
		}
		else if (document.layers){
			txt+='<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">'
			txt+='<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>'
			txt+='</ilayer>'
		}
	}
}
}
// Scroll downwards end


//-->
</script>

<body>

и вот что надо прописовать в ХТМЛ
<script type="text/javascript">document.write(txt);</script>

егуший текст нужно вписовать сюда:
var marqueecontent=' ssss ';
И когда туда происоваеш ПХП код, то не работает.
Вопрос в том, как сделать так чтоб ПХП код я мог поместить в ХТМЛ...
Замечу что простой ПХП код типа
<?php  print "bla bla bla "; ?>


работает но сложный
var marqueecontent=' <?php
      
     include("/home/moya_papka_bez_dirok/public_html/module_news/show_news.php");
?> ';

увы глюкает (( помагите а

Последний раз редактировалось Волчонок, 26.02.2011 в 19:44.
Ответить с цитированием
  #2 (permalink)  
Старый 26.02.2011, 21:15
Аватар для B@rmaley.e><e
⊞ Развернуть
Отправить личное сообщение для B@rmaley.e><e Посмотреть профиль Найти все сообщения от B@rmaley.e><e
 
Регистрация: 11.01.2010
Сообщений: 1,810

А посмотреть консоль ошибок никак?
Ответить с цитированием
  #3 (permalink)  
Старый 26.02.2011, 22:04
Аспирант
Отправить личное сообщение для firstchild Посмотреть профиль Найти все сообщения от firstchild
 
Регистрация: 31.07.2010
Сообщений: 94

переводы строк или по другому символы новой строки
Ответить с цитированием
  #4 (permalink)  
Старый 28.02.2011, 13:29
Новичок на форуме
Отправить личное сообщение для Волчонок Посмотреть профиль Найти все сообщения от Волчонок
 
Регистрация: 24.02.2011
Сообщений: 7

Вот что пишет, в консоле ошибок:

Ошибка: unterminated string literal
Источник: http://www.zakat.tk/test2.php
Строка 8, символ 19
Исходный код:
var marqueecontent='minibloc<table width="100%" border="0">

когда я туда вставлю вот такой пхп код:
<? print  $template = "minibloc";
	  $number = "100";
      $category = "3";
     include("/home/a4505125/public_html/cutenews/show_news.php"); ?>
Ответить с цитированием
  #5 (permalink)  
Старый 28.02.2011, 23:49
Новичок на форуме
Отправить личное сообщение для Волчонок Посмотреть профиль Найти все сообщения от Волчонок
 
Регистрация: 24.02.2011
Сообщений: 7

говорят что XmlHttpReques поможет никто в Айаксе не разбираеться?
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Помогите! Многоуровневые вкладки! sergeeeeee Элементы интерфейса 2 02.08.2010 23:50
Помогите нубу Fongolcs Работа 34 19.05.2010 22:45
Lightbox2 помогите интегрировать мыш Серверные языки и технологии 2 07.09.2009 13:35
Помогите динамически интегрировать значение в URL Yurii Общие вопросы Javascript 14 07.05.2008 15:12