View Single Post
ישן 20-06-07, 11:48   # 27
X-T
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jan 2007
הודעות: 1,021

X-T לא מחובר  

הוא לא חוזר, בדקתי.
אבל זה הקובץ המלא:
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>
__________________
You don't shine if you don't glow

Last edited by X-T; 20-06-07 at 11:56..