Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~328 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for rajeesh_rsn

This code will help you in retrieving 15 random numbers and storing them in an array,..... [code=php]<?php $j = 0; $data = array(); while($j < 15) { $value = rand(2,88); if(!(in_array($value,$data))) { $j = $j + 1; $data[$j] = $value; } } foreach($data as $keys) { echo $keys."<br>"; } ?>[/code] …

Member Avatar for rajesh_kanna
0
153
Member Avatar for rajesh_kanna

Hai friends, I m gettin error as no such file or directory found,.. Here is my code,.. Can anyone help in resolving this problem,.. [code=php]<?php ?> <form action=" " method="post" enctype="multipart/form-data"> <input type="password" name="pwd" /> <input type="file" name="try"> <input type="submit" value="submit" /> </form> <?php if(isset($_FILES['try'])) { $source_file = $_FILES['try']['name']; $dir …

0
55
Member Avatar for rajesh_kanna
Member Avatar for Member #120589
0
120

The End.