+ Reply to Thread
Results 1 to 3 of 3

Thread: Renaming and Image on Upload!?!

  1. #1
    ziycon's Avatar
    ziycon is offline Wannabe Geek ziycon will become famous soon enough
    Join Date
    Jan 2007
    Location
    Dublin
    Posts
    461

    Default Renaming and Image on Upload!?!

    Below is partial code as to a function im using, i just cant seem to assign $image_id as the images name before its saved on to the server??

    PHP Code:
    if($_FILES['imagefile']['name'] != "")
    {
        
    $target_path "../images/games/";                                    
        
    $target_path $target_path basename$_FILES['imagefile']['name']);                                    
        
    $image_id getImageID();
        if(
    move_uploaded_file($_FILES['imagefile']['tmp_name'], $target_path))
        {                   
              
    $_FILES['imagefile']['name'] = $image_id;
        }


  2. #2
    Forbairt's Avatar
    Forbairt is offline respect my AW-THOR-IT-AYY Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough Forbairt will become famous soon enough
    Join Date
    Jun 2007
    Location
    My Office, Dublin
    Posts
    2,285

    Default

    Code:
    $image_id = getImageID();
    $target_path = $target_path . $image_id;
    
    Code:
    move_uploaded_file($_FILES['imagefile']['tmp_name'], $target_path)
    
    should do the trick for you ?

  3. #3
    ziycon's Avatar
    ziycon is offline Wannabe Geek ziycon will become famous soon enough
    Join Date
    Jan 2007
    Location
    Dublin
    Posts
    461

    Default

    Nice one, works perfectly!

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Optimization by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64