Search found 1 match

by csmatyi
Sat Jun 27, 2009 1:23 pm
Forum: PHP - Code
Topic: continuosly change text element
Replies: 1
Views: 171

continuosly change text element

$seq="ACGTGACG"; for ($i=1;$i<=1000;$i++) { mutate($seq); print "<div id=\"opseq\">"; print $seq; print "</div>"; } In the above php code I have a variable, $seq, which mutates over 1000 cycles. I have surrounded this element with div tags, and have given it t...