Note that there are some explanatory texts on larger screens.

plurals
  1. POget local image and store to amazon and store link in db
    primarykey
    data
    text
    <p>i have a web page which allows user to choose image file from local disk..what i want to do is that get image store it on amazon s 3 bucket and convert local link to amazon link and store it in my db.how do i do this.also please tell, is amazon for free and how to make bucket...please help i am a complete newbie to amazon. here is my code</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;link rel="stylesheet" type="text/css" href="selection1.css"&gt; &lt;link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" /&gt; &lt;script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"&gt;&lt;/script&gt; &lt;script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;meta charset=utf-8 /&gt; &lt;script&gt; function readURL(input) { if (input.files &amp;&amp; input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#blah') .attr('src', e.target.result) .width(300) .height(300); }; reader.readAsDataURL(input.files[0]); } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt;&lt;center&gt; &lt;div id="div1"&gt; &lt;h2&gt;Select 3 images as your password by clicking the 'choose' button and then click 'submit' button to proceed furthur.&lt;/h2&gt; &lt;div id="div2"&gt; &lt;img id="blah" src="#" alt="your image" /&gt; &lt;/div&gt; &lt;div id="div3"&gt; &lt;img id="" src="#" alt="your image" /&gt; &lt;/div&gt; &lt;div id="div4"&gt; &lt;img id="" src="#" alt="your image" /&gt; &lt;/div&gt; &lt;/br&gt;&lt;/br&gt; &lt;input type='file' onchange="readURL(this);" /&gt; &lt;input type='file' /&gt; &lt;input type='file' /&gt; &lt;/div&gt; &lt;/center&gt;&lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload