Skip to content

Commit 26040ec

Browse files
authored
Update README.md
1 parent caba93d commit 26040ec

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ $rename = rand().time(); // You can choose your own name.
2626
$upload = new ImageUploadAndResize('localhost','root','',''); //Host, User, Password, DB, Port
2727
$upload->uploadFiles('files', '../uploads', 400, '../mini-logo.png', 20, 20, $rename, 0777, 100, '');
2828
```
29+
After upload images method will return images Name array that you can use to submit into **DB TABLE** like.
30+
31+
```
32+
print"<pre>";
33+
foreach($upload->prepareNames as $name){
34+
print_r($name[0]);
35+
}
36+
print"</pre>";
37+
```
38+
2939
All parameters that you need to set
3040

3141
```php

0 commit comments

Comments
 (0)