Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~112 People Reached
Favorite Forums
Favorite Tags
php x 2
Member Avatar for gvkatashi01

i have a php code to random 1 - 50 question from database anh print it in web [CODE] $arr1=array(); for($x=0;$x<10;$x++) { while(1) { $s=rand(0,50); if(ktra($arr1,$s)==1) { $arr1[$x]=$s; break; } } } $y=0;$arr2=array(); ?> <?php for($x=0;$x<count($arr1);$x++) { $sql="select * from question where IDQuestion='".$arr1[$x]."'"; $result=DataProvider::ExecuteQuery($sql); if($result !=false) { while($row=mysql_fetch_array($result,MYSQL_ASSOC)) { $noidung=$row["Content"]; …

Member Avatar for blocblue
0
112