
May 29th, 2000, 11:50 AM
|
|
Junior Member
|
|
Join Date: May 2000
Posts: 18
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Thanks, but I figured it out a while ago. Just incase anyone is trying to figure it out (since i can't find any other info on it on Devshed.com) this is what I used:
in form file:
<FORM action=upload.php method="post" enctype="multipart/form-data">
Picture:<INPUT type="file" name="picture">
</FORM>
In (upload.php) file that sends the file:
copy($picture, "../images/$num.jpg");
(..images/$num.jpg can be whatever you want to call the file)
|