This is a discussion on "image uploaded file overlap" within the PHP Forum section. This forum, and the thread "image uploaded file overlap are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
image uploaded file overlap
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
image uploaded file overlap
hi, i have problems in upload image in one folders
but this code will be finally worked but whne i will upload next image it file name automatally rename abc all images name. but i want to that not rename if image name and not overlapping on it. do y have any idea that yours regarded dharmendra <? $upImg = $_FILES['upload']['name']; if(isset($upImg)){ echo "File Name: ".$upImg; echo "<br>File Temp Name: ".$_FILES['upload']['tmp_name']; echo "<br>File Size: ".$_FILES['upload']['size']; echo "<br>File Type: ".$_FILES['upload']['type']; if($_FILES['btnUpload']['size']<(50*1024)){ $path="tmp/"; $arrImg=explode('.',$_FILES['upload']['name']); copy($_FILES['upload']['tmp_name'],$path."abc.".$arrImg[1]); } else{ echo "Image size exceeds 50 kb"; } } ?> |
|
|
|
|||
|
Re: image uploaded file overlap
Could you please have another try at explaining what it is exactly you want to do? Thanks. |
|
||||
|
Re: image uploaded file overlap
This should give partial relief until you can solve the underlying problem.
|
![]() |
| Tags |
| image, uploaded, file, overlap |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Flash Divs overlap problem | oberonx | Web Page Design | 1 | Apr 4th, 2008 20:20 |
| Image file size help | danny322 | Graphics and 3D | 6 | Nov 9th, 2007 11:20 |
| div in table row overlap | jlbantang | Web Page Design | 7 | Oct 12th, 2007 22:11 |
| creating a site for for image and file hosting | ahmednadir | Starting Out | 2 | Apr 2nd, 2007 23:19 |
| Please help: Cannot view uploaded file | sjagan | PHP Forum | 4 | Jun 27th, 2006 09:31 |