Jump to content
php.lv forumi

pasaka preiskhaa luudzu


archux

Recommended Posts

nu taa paciiniijos un atradu

 

<script language="JavaScript">

 

function random_content(){

var mycontent=new Array()

//specify random content below.

mycontent[1]='rand teksts 1'

mycontent[2]='rand teksts 2'

mycontent[3]='rand teksts 3'

mycontent[4]='rand teksts 4'

mycontent[5]='rand teksts 5'

 

var ry=Math.floor(Math.random()*mycontent.length)

if (ry==0)

ry=1

document.write(mycontent[ry])

}

random_content()

//-->

</script>

Link to comment
Share on other sites

  • 3 months later...
nu taa paciiniijos un atradu

 

<script language="JavaScript">

 

function random_content(){

var mycontent=new Array()

//specify random content below.

mycontent[1]='rand teksts 1'

mycontent[2]='rand teksts 2'

mycontent[3]='rand teksts 3'

mycontent[4]='rand teksts 4'

mycontent[5]='rand teksts 5'

 

var ry=Math.floor(Math.random()*mycontent.length)

if (ry==0)

ry=1

document.write(mycontent[ry])

}

random_content()

//-->

</script>

Bet kādā veidā panākt,lai tekstu,kas publicējas njem nevis no scripta,bet gan no faila? Piemēram "rand teksts 1" būtu hiperlinks uz kadu teksta failu (piem., teksts.txt) un kods to publicētu?

Link to comment
Share on other sites

Bet kādā veidā panākt,lai tekstu,kas publicējas njem nevis no scripta,bet gan no faila?

Glabā rindas failā un ielasi ar, piemēram, file. Bet vispār skripts arī ir fails.

 

Piemēram "rand teksts 1" būtu hiperlinks uz kadu teksta failu (piem., teksts.txt) un kods to publicētu?

<a href="teksts.txt">rand teksts 1</a>

?

Link to comment
Share on other sites

<?php
$adreses=array("hā tē tē pē", "un tā tālāk", "visas adreses");
$teksti=array("spied šiet!", "free smileys!", "free animal porn viagra!");
$r=rand(0, (count($adreses)-1));
echo '<a href="'.$adreses[$r].'">'.$teksti[$r].'</a>';
?>

Ar javaskriptu tas pats, tikai javaskripta sintakse (kas daudz neatšķiras no PHP).

Edited by Stopp
Link to comment
Share on other sites

×
×
  • Create New...