PHP&JavaScript

Volchonokbek

Новичок
Здраствуйте. У меня есть небольшая проблема, я думаю что намётанному глазу, эту проблему решить будет легко. Тем более что я это взял с рабочего скрипта, модуля для форума.
Этот скрипт выводит данные из БД строку заголовков новостей приравнивает, ее определенной переменной. А эту переменную интегрирь оватует в javascript(Скролинг тектса). Но одна проблема: Когда переменную, вставлять внутри, массива все нормально принт выводит все заголовки из таблицы. Но когда переменную $mid_content вставляешь JS Выводиться только первая новость. А мне нужна чтобы все заголовки выводились помагите. Вот собственно и скрипт.
Вывод данных:
PHP:
<?php
 $db_con          = @mysql_connect("localhost", "root", "123456");
 $db_selectdb      = @mysql_select_db("a4505125_site", $db_con); $hadit_db_sql = "SELECT * FROM hadit  order by id";
       $hadit_db_result = mysql_query($hadit_db_sql);
     while ($hadit_db_rows = mysql_fetch_row(($hadit_db_result)))
     { $titless      =    $hadit_db_rows[4];
 
 $Topic_Buffer = "$titless";
 
 
     }
       $mid_content = "<table width=\"100%\" border=\"$border\"  cellspacing=\"$cellspacing\" bordercolor=\"$bgcolor2\" bgcolor=\"$bgcolor1\">";
     $mid_content .= "$Topic_Buffer";
     $mid_content .= "</table>";
 
 ?>
Джава скролинга текста

<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='<p><?php echo "$mid_content"; ?></p>';
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>
Тег в HTML:
<script type="text/javascript">document.write(txt);</script>
 

KorP

Новичок
1. pastebin.com
2. вы наивно полагаете, что кто то будет это читать?
 

Volchonokbek

Новичок
Я просто написал вопрос, и правильно все описал, не нарушил не один закон форума и не прошу мне писать скрипт, я просто желаю чтоб мне сказали где искать ошибку. Если конечно это сложно кому то сделать, то я все равно заранее благодарю, за то, что кто то хоть кликнул по этой теме. И читать там ничего не надо, я просто для наглядности выложил сам скрипт. Если кто поможет спасибо. Кстати что за сылка pastebin.com ?
 

A1x

Новичок
попробуйте в переменной $mid_content все символы перевода строки заменить на пробелы
и возможно это еще не все

посмотрите что реально выводится тут:
var marqueecontent='<p><?php echo "$mid_content"; ?></p>';

какие ошибки выдает джаваскрипт

ЗЫ вкаком это форуме такой страшный код?
 

Volchonokbek

Новичок
попробуйте в переменной $mid_content все символы перевода строки заменить на пробелы
и возможно это еще не все

посмотрите что реально выводится тут:
var marqueecontent='<p><?php echo "$mid_content"; ?></p>';

какие ошибки выдает джаваскрипт

ЗЫ вкаком это форуме такой страшный код?
Проблема не в том, что он не выводит, данные проблема в том, что он выводит только последнюю строк.Джава скрипт нормально работает.

P.S Скрипт Пхп нюк.

Обновление Заработало вот исправление:
PHP:
<?
@include "bd_conf.file";

      $hadit_db_sql = "SELECT * FROM hadit   order by id";
      $hadit_db_result = mysql_query($hadit_db_sql);
$mid_content = "<table width=\"100%\" border=\"$border\"  cellspacing=\"$cellspacing\" bordercolor=\"$bgcolor2\" bgcolor=\"$bgcolor1\">";
     while ($hadit_db_rows = mysql_fetch_row(($hadit_db_result)))
    { $titless       =     $hadit_db_rows[4];

$mid_content .= "$titless";
 

 	}
 	 
     
     $mid_content .= "</table>";
  ?>
 
Сверху