Webmaster Forum


Go Back   Webmaster Forum > Web Development > Coding Forum

Coding Forum Problems with your code? Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, Flash & ActionScript, and more.


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #1 (permalink)  
Old 08-15-2010, 03:41 AM
Junior Member
 
Join Date: 08-15-10
Posts: 5
iTrader: 0 / 0%
Upload form (file name)

[b]Hi, I have in my website a upload form (people can upload music to my site) and others can download and listen.

How can I make to change the file name when they upload in my site.

EXAMPLE: if they upload this song:



shakira-waka-waka.mp3

I like to change name automatic to

mysite.com-shakira-waka-waka.mp3





please contact me to webhoost@live.com please please please

ask if you can not understeand something

Last edited by webmaster000; 08-15-2010 at 03:45 AM.
 
Reply With Quote
  #2 (permalink)  
Old 08-15-2010, 04:28 AM
Junior Member
 
Join Date: 08-15-10
Posts: 5
iTrader: 0 / 0%
my upload form code WHAT I NEED TO MAKE HERE TO RENAME FILES AUTO WHEN UPLOADING


INDEX.PHP
HTML Code:
<form action="upload.php" method="post" enctype="multipart/form-data"> File: <input type="file" name="file" size="30"> <input type="submit" value="Upload"> </form>

UPLOAD.PHP

PHP Code:
<?php
// ==============
// Configuration
// ==============
$uploaddir "uploads/images"// Where you want the files to upload to - Important: Make sure this folders permissions is 0777!
$allowed_ext "jpg, JPG, jpeg, JPEG, gif, GIF, bmp, BMP, PNG, MP3"// These are the allowed extensions of the files that are uploaded
$max_size "1500000"// 50000 is the same as 50kb
$max_height "250"// This is in pixels - Leave this field empty if you don't want to upload images
$max_width "230"// This is in pixels - Leave this field empty if you don't want to upload images
// Check Entension
$extension pathinfo($_FILES['file']['name']);
$extension $extension[extension];
$allowed_paths explode(", "$allowed_ext);
for(
$i 0$i count($allowed_paths); $i++) {
if (
$allowed_paths[$i] == "$extension") {
$ok "1";
}
}
// Check File Size
if ($ok == "1") {
if(
$_FILES['file']['size'] > $max_size)
{
print 
"Nuk pranohen foto me madhsi mbi 1.5 MB!";
exit;
}
// Check Height & Width
if ($max_width && $max_height) {
list(
$width$height$type$w) =
getimagesize($_FILES['file']['tmp_name']);
if(
$width $max_width || $height $max_height)
{
print 
"Rezulucioni i fotografise eshte teper i madh!";
exit;
}
}
// The Upload Part
if(is_uploaded_file($_FILES['file']['tmp_name']))
{
move_uploaded_file($_FILES['file']['tmp_name'],$uploaddir.'/'.$_FILES['file']['name']);
}
print 
"Fotografia juaj u dergua me sukses, ajo do te vendohet ne web faqe pasi tė aprovohet nga Administratoret !";
} else {
print 
"Ju mund te ngarkoni vetem foto: Jpg, gif, bmp, png, mp3!";
}
?>

Last edited by HTMLBasicTutor; 08-15-2010 at 11:59 AM.
 
Reply With Quote
  #3 (permalink)  
Old 08-15-2010, 05:32 AM
Junior Member
 
Join Date: 08-15-10
Posts: 5
iTrader: 0 / 0%
I LIKE TO CHANGE.....

I LIKE TO CHANGE THOSE THING


 
Reply With Quote
  #4 (permalink)  
Old 08-15-2010, 07:47 AM
Contributing Member
 
Join Date: 06-29-07
Posts: 313
iTrader: 0 / 0%
Change line
Quote:
move_uploaded_file($_FILES['file']['tmp_name'],$uploaddir.'/'.$_FILES['file']['name']);
with

Quote:
move_uploaded_file($_FILES['file']['tmp_name'],$uploaddir.'/mysite.com-'.$_FILES['file']['name']);
__________________
Rims for Cheap
Check out Santaluz Real Estate
 
Reply With Quote
  #5 (permalink)  
Old 08-15-2010, 09:45 AM
Junior Member
 
Join Date: 08-15-10
Posts: 5
iTrader: 0 / 0%
but how can i change artist info album descpription .



Can anyone send me a script that can convert youtube videos to mp3
 
Reply With Quote
  #6 (permalink)  
Old 08-15-2010, 12:53 PM
Junior Member
 
Join Date: 08-15-10
Posts: 5
iTrader: 0 / 0%
HOW CAN AUTOMATIC CHANGE ID3 TAG IN MP3
 
Reply With Quote
Go Back   Webmaster Forum > Web Development > Coding Forum

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 05:35 PM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.