Nieuw lid |
|
Hoi
ja ik weet het dat ik veel post met het zelfde script
maar als je het doet doe het dan goed ;)
ok hier komt ie
<?php
/**
* map waar de uploads geplaatst worden (!chmod 0777!)
*/
$map = './uploaduser/';
/**
* array met de toegestane upload types
*/
$types = array(
'image/gif',
'image/jpeg',
'image/png',
'image/bmp'
);
/**
* aantal
*/
$aantal = (empty($_POST['aantal'])) ? 5 : $_POST['aantal'];
echo '<form name="aantal" action="" method="POST">';
echo 'aantal bestanden: <input type="text" name="aantal" size="2" maxlength="2" />';
echo '<input type="submit" name="apply" value="toepassen" />';
echo '</form><hr /><br />';
if(!isset($_POST['submit'])) {
echo '<form name="upload" action="uploaduser.php" enctype="multipart/form-data" method="POST">';
for ($i = 0; $i <= $aantal - 1; $i++) {
if ($i < 10) {
echo 'Bestand 00' . $i . ': <input type="file" name="bestand[]" /><br />';
}
else if ($i < 100 && $i >= 10) {
echo 'Bestand 0' . $i . ': <input type="file" name="bestand[]" /><br />';
}
else {
echo 'Bestand ' . $i . ': <input type="file" name="bestand[]" /><br />';
}
}
echo '<input type="submit" name="submit" value="upload" />';
echo '</form>';
}
else {
for($i = 0; $i < count($_FILES['bestand']['name']); $i++) {
if(isset($_FILES['bestand']['name'][$i]) && is_uploaded_file($_FILES['bestand']['tmp_name'][$i])) {
if (!in_array($_FILES['bestand']['type'][$i], $types)) {
echo 'dit bestandsformaat is niet toegestaan!<br />';
}
else {
if(!move_uploaded_file($_FILES['bestand']['tmp_name'][$i], $map.$_FILES['bestand']['name'][$i])) {
echo 'mislukt!<br />';
}
else { echo 'gelukt!<br />'; }
}
}
}
}
?>
<?php /** * map waar de uploads geplaatst worden (!chmod 0777!) */ $map = './uploaduser/'; /** * array met de toegestane upload types */ 'image/gif', 'image/jpeg', 'image/png', 'image/bmp' ); /** * aantal */ $aantal = (empty($_POST['aantal'])) ? 5 : $_POST['aantal']; echo '<form name="aantal" action="" method="POST">'; echo 'aantal bestanden: <input type="text" name="aantal" size="2" maxlength="2" />'; echo '<input type="submit" name="apply" value="toepassen" />'; echo '</form><hr /><br />'; if(!isset($_POST['submit'])) { echo '<form name="upload" action="uploaduser.php" enctype="multipart/form-data" method="POST">'; for ($i = 0; $i <= $aantal - 1; $i++) { if ($i < 10) { echo 'Bestand 00' . $i . ': <input type="file" name="bestand[]" /><br />'; } else if ($i < 100 && $i >= 10) { echo 'Bestand 0' . $i . ': <input type="file" name="bestand[]" /><br />'; } else { echo 'Bestand ' . $i . ': <input type="file" name="bestand[]" /><br />'; } } echo '<input type="submit" name="submit" value="upload" />'; } else { for($i = 0; $i < count($_FILES['bestand']['name']); $i++) { if (!in_array($_FILES['bestand']['type'][$i], $types)) { echo 'dit bestandsformaat is niet toegestaan!<br />'; } else { if(!move_uploaded_file($_FILES['bestand']['tmp_name'][$i], $map.$_FILES['bestand']['name'][$i])) { } else { echo 'gelukt!<br />'; } } } } } ?>
Wat wil ik nu?
Als het uploaden gelukt is
de link weer geven.
En als het kan dat je dan kan kiezen voor phpbb stijl dus met tags
of in html stijl
dus zo
maar het hoeft niet
maar mag wel zal nl. wel handig zijn.
:)
Ik hoop echt dat jullie kunnnen helpen
Veder vind ik 1 van de beste sites voor script suport
groeten brantje
|