rudzis Posted May 3, 2005 Report Share Posted May 3, 2005 Man vajadzīgs kāds file upload skriptelis dažādu tipu failiem - gan teksta, gan binārajiem (doc, ppt, rar, jpg, utt.) Kādam ir kas aizķēries? Link to comment Share on other sites More sharing options...
hu_ha Posted May 3, 2005 Report Share Posted May 3, 2005 a search kam domāts? http://php.lv/f/index.php?act=Search&CODE=...highlite=upload un php.net http://lv.php.net/manual/en/function.is-uploaded-file.php atrodam spēkus pameklēt pirms prasam, citādāk paliek garlaicīgi. Link to comment Share on other sites More sharing options...
ohmygod Posted May 3, 2005 Report Share Posted May 3, 2005 kaut ko šitik vienkāršu?? <?php if($_POST['Submit']=='Pievienot'){ $upload_dir='../files'; $fails='file'; $filename= $upload_dir.'/'.$_FILES[$fails]['name']; if (@move_uploaded_file($_FILES[$fails]['tmp_name'], $filename)) { echo 'fails '.$_FILES[$fails]['name']; echo ' pievienots<br \>'; }else { echo $_FILES[$fails]['name'].' nepievienojaas :(<br \>'; } }?> <form name="form1" enctype="multipart/form-data" method="post" action=""><table width="400" border="0"> <tr> <td colspan="2"><div align="justify">Būtībā var pievienot jebkuru failu. </div></td> </tr> <tr> <td>Pievienot failu: </td> <td> <input type="file" name="file"> </td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Pievienot"></td> </tr> </table> </form> Link to comment Share on other sites More sharing options...
rudzis Posted May 3, 2005 Author Report Share Posted May 3, 2005 ohmygod, paldies ;) Kāds nezin, no kā atkarīgs, cik lielus failus var augšupielādēt? Kur tas ir konfigurējams iekš Apaches? Link to comment Share on other sites More sharing options...
hu_ha Posted May 3, 2005 Report Share Posted May 3, 2005 Kāds nezin, no kā atkarīgs, cik lielus failus var augšupielādēt? Kur tas ir konfigurējams iekš Apaches? 17165[/snapback] nu takš atver to php.net un palasi nedaudz http://lv.php.net/manual/en/ini.core.php#i...ad-max-filesize Link to comment Share on other sites More sharing options...
Recommended Posts