-
-
Save spacebiscuit/19a3d4f191a2924ab92cf44a5b5b53cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form enctype="multipart/form-data" method="post" accept-charset="utf-8" action="/listings/add"> | |
<div style="display:none;"> | |
<input label="false" class="form-control mb10" type="hidden" name="_method" value="POST"> | |
</div> | |
<fieldset> | |
<div class="input text"> | |
<input label="false" class="form-control mb10" type="text" name="title" placeholder="Give your listing an eye catching headline" id="title"> | |
</div> | |
<div class="input file"><input type="file" name="listing_images[]" multiple="multiple" id="listing-images"></div> | |
</fieldset> | |
<button class="btn btn-lg btn-primary-corp btn-block" type="submit"><i class="fa fa-sign-in"></i> Save</button> | |
</form> | |
//////////////////////////////////////////////// | |
[ | |
'title' => 'test', | |
'listing_images' => [ | |
(int) 0 => [ | |
'name' => 'origo3.jpg', | |
'type' => 'image/jpeg', | |
'tmp_name' => 'C:\Program Files\WAMP\tmp\php90D8.tmp', | |
'error' => (int) 0, | |
'size' => (int) 186726 | |
], | |
(int) 1 => [ | |
'name' => 'origo2.jpg', | |
'type' => 'image/jpeg', | |
'tmp_name' => 'C:\Program Files\WAMP\tmp\php90E9.tmp', | |
'error' => (int) 0, | |
'size' => (int) 189625 | |
] | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment