Jump to content
  • 0

Случайное отображение


Man
 Share

Question

Ребята я дико извиняюсь, я сам ни разу не программист, но у меня есть задача которую нужно решить. На сайте расположено 9 поисковых блоков, задача следующая: нужно сделать так чтобы они все время меняли свою позицию при обновлении страницы, за исключением 1 из них. Тоесть он постоянно на своем месте. Как это можно реализовать?

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

<?
$arr=array();
$arr['1']='bank';
$arr['2']='monster';
$arr['3']='dice';
$keys = array_keys($arr);
shuffle($keys);

$blocks = array(); //declare a new array
foreach( $keys as $key)

{

$blocks[] = $arr[$key];

}
echo('<div>'.$blocks[1].'</div>');
echo('<div>'.$blocks[2].'</div>');
echo('<div>'.$blocks[3].'</div>');
?>

Что то вроде этого, вот как разбрасывать ключи массива: http://www.sajithmr.com/php-randomize-array-shuffle/

Ну а юзать echo в тех местах куда надо вставить блоки, а вместо bank monster и dice код блока bank monster и dice. Надеюсь все понятно)))

Link to comment
Share on other sites

  • 0

<?
$arr=array();
$arr['1']='bank';
$arr['2']='monster';
$arr['0']='dice';
$keys = array_keys($arr);
shuffle($keys);

$blocks = array(); //declare a new array
foreach( $keys as $key)
{

$blocks[] = $arr[$key];

}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
<style>

</style>
</head>
<body>
<?
echo($blocks[1]."<br />");
echo($blocks[2]."<br />");
echo($blocks[0]);
?>
</body>
</html>

Вот код))

Edited by Vindex10
Link to comment
Share on other sites

  • 0

Хотя нет, ты прав)))

вот код ver 2.0:

<?
$arr=array();
$arr['1']='bank';
$arr['2']='monster';
$arr['0']='dice';
$length=sizeof($arr);
$blocks=array_rand($arr, $length);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
<style>

</style>
</head>
<body>
<?
echo($arr[$blocks[1]]."<br />");
echo($arr[$blocks[2]]."<br />");
echo($arr[$blocks[0]]);
?>
</body>
</html>

вроде так))

Edited by Vindex10
Link to comment
Share on other sites

  • 0

вот.

<?
$arr=array();
$arr['1']="<div style=\"background:#88ff99;width:100px;height:50px;margin-left:10px;\"> </div>";
$arr['2']="<div style=\"background:#009900;width:100px;height:50px;margin-left:10px;\"> </div>";
$arr['0']="<div style=\"background:#880099;width:100px;height:50px;margin-left:10px;\"> </div>";
$length=sizeof($arr);
$blocks=array_rand($arr, $length);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
<style>

</style>
</head>
<body>
<?
echo($arr[$blocks[1]]."<br />");
echo($arr[$blocks[2]]."<br />");
echo($arr[$blocks[0]]);
?>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy