הוא לא חוזר, בדקתי.
אבל זה הקובץ המלא:
PHP קוד:
<html dir="rtl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
</head>
<style>
body,marquee{
font-family:arial;
font-size:14px;
};
</style>
<?
include "db.php";
$id = $_GET['id'];
$query = mysql_query("SELECT * FROM settings WHERE id='$id'");
$rr = mysql_fetch_array($query);
$move = $rr['move'];
$speed = $rr['speed'];
$height = $rr['height'];
$width = $rr['width'];
$text = $rr['text'];
if($move == 1){
$move = "right";
}
if($move == 2){
$move = "left";
}
if($move == 3){
$move = "down";
}
if($move == 4){
$move = "up";
}
?>
document.write('<marquee height="<?=$height;?>" width="<?=$width;?>" direction="<?=$move;?>"><?=$text;?></marquee>');
</body>
</html>