1. <GALiRe>
2.
3.
4. <%
5.
6. print length(@(1,2,3,4,5,6));
7. while ($x = @(1,2,3,4,5,6)) {
8. print "$x<new>";
9. }
10.
11. print "<line>";
12.
13. $var1="For other storage engines, such as InnoDB, this value is an approximation, and may vary from the actual value by as much as 40 to 50%. In such cases, use SELECT COUNT(*) to obtain an accurate count.";
14. $var2=" The row storage format (Fixed, Dynamic, Compressed, Redundant, Compact). Starting with MySQL/InnoDB 5.0.3, the format of InnoDB tables is reported as Redundant or Compact. Before 5.0.3, InnoDB tables are always in the Redundant format.";
15. $var3=" The storage engine for the table. Before MySQL 4.1.2, this value is labeled as Type. See Chapter 14, MySQL Storage Engines and Table Types.";
16.
17. @textArry = (($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),$var3,($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),($var1,$var2,$var3),$var3,($var1,$var2,$var3),($var1,$var2,$var3));
18. print "@textArry<new><new>";
19.
20. print @textArry[0][0];
21. print @textArry[0][1];
22. print @textArry[0][2];
23. print @textArry[1][0];
24. print @textArry[1][1];
25. print @textArry[1][2];
26. print @textArry[2][0];
27. print @textArry[2][1];
28. print @textArry[2][2];
29. print @textArry[3][0];
30. print @textArry[3][1];
31. print @textArry[3][2];
32.
33.
34. %>
35.
36.
37. <end GALiRe>
Back to /SampleHost/