- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
3 Posted Topics
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] …
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 …
Hai,.. Can anyone help me in creating a cascading menu of below kind,..
The End.
rajesh_kanna