-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDraftsSelect.php
More file actions
53 lines (36 loc) · 1.38 KB
/
DraftsSelect.php
File metadata and controls
53 lines (36 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
if(isset($_POST['get_image']))
{
$url=$_POST['img_url'];
$data = file_get_contents($url);
$new = 'images/new_image.jpg';
file_put_contents($new, $data);
echo "<img src='images/new_image.jpg'>";
}
?>
$('#preview').append('<img src="'+src+'" width="200px;" height="200px">');
<!-- begin snippet: js hide: false console: true babel: null -->
<!-- language: lang-js -->
$(".chosen-select").chosen({
no_results_text: "Oops, nothing found!"
})
<!-- language: lang-html -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/harvesthq/chosen/gh-pages/chosen.jquery.min.js"></script>
<link href="https://cdn.rawgit.com/harvesthq/chosen/gh-pages/chosen.min.css" rel="stylesheet"/>
<form action="http://httpbin.org/post" method="post">
<select data-placeholder="Begin typing a name to filter..." multiple class="chosen-select" name="test">
<option value=""></option>
<option>American Black Bear</option>
<option>Asiatic Black Bear</option>
<option>Brown Bear</option>
<option>Giant Panda</option>
<option>Sloth Bear</option>
<option>Sun Bear</option>
<option>Polar Bear</option>
<option>Spectacled Bear</option>
</select>
<input type="submit">
</form>
<!-- end snippet -->
enter code here