removed eronius comment
[ga4php.git] / unittests / gaasdlibconf.php
1 <?php
2
3 require_once("../gaas/lib/gaasdLib.php");
4
5 $backEnd = "IN";
6 createDB();
7
8 function grs()
9 {
10         $str = "";
11         $strpos = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
12         
13         for($i=0; $i<10; $i++) {
14                 $str .= $strpos[rand(0, strlen($strpos)-1)];
15         }
16         
17         return $str;
18 }
19
20 for($i = 0; $i < 20; $i++) {
21         $grs = grs();
22         confPutVar("val$i", $grs);
23         echo "set $i to $grs\n";
24 }
25
26 for($i = 0; $i < 20; $i++) {
27         $value = confGetVar("val$i");
28         echo "Value for $i is $value\n";
29 }
30 ?>