-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 33ccd0a
Showing
13 changed files
with
1,048 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Anush | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Simple File Upload with PHP & Ajax | ||
================ | ||
|
||
Simple File Upload with Ajax | ||
|
||
This is a demo code to upload file using PHP and Ajax made for article on Techstream <a href="http://techstream.org/Web-Development/PHP/Simple-File-Upload-with-Ajax">Simple File Upload with Ajax</a>. | ||
|
||
Credits | ||
------- | ||
|
||
<ul> | ||
<li><strong>Fonts by <a href="http://www.fontsquirrel.com">Font Squirrel </a></strong> : Source Sans Pro by Adobe released in SIL Open Font License v1.10. See <a href="http://www.fontsquirrel.com/license/source-sans-pro">Licence</a> for details.</li> | ||
<li><strong>White Board Framework</strong> : <a href="https://github.com/anushbmx/whiteboard/">White Board</a> by <a href="http://twitter.com/anushbmx">anushbmx</a> & <a href="http://twitter.com/supersolanki">supersolanki</a></li> | ||
<li><strong>Glyph Icons by Font <a href="http://fontawesome.io/license/">Awesome Icons</a></strong> : Font Awesome is fully open source project under SIL OFL 1.1 License. </li> | ||
</ul> | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#drop-box{ | ||
border: 10px solid rgb(14, 56, 119); | ||
cursor: pointer; | ||
margin: 20px auto; | ||
position: relative; | ||
height: 200px; | ||
text-align: center; | ||
width: 200px; | ||
} | ||
|
||
#drop-box p{ | ||
width: 90%; | ||
display: block; | ||
color: #fff; | ||
margin: 3.3rem auto; | ||
} | ||
|
||
#drop-box:before { | ||
content: " "; | ||
position: absolute; | ||
z-index: -1; | ||
top: 1px; | ||
left: 1px; | ||
right: 1px; | ||
bottom: 1px; | ||
border: 2px dashed rgb(255,255,255); | ||
background-color: rgb(14, 56, 119); | ||
} | ||
|
||
#upl{ | ||
display: none; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@font-face { | ||
font-family: 'Sans-Pro'; | ||
font-weight: normal; | ||
src: url('fonts/SourceSansPro-Light.otf'); | ||
src: url('fonts/SourceSansPro-Light.otf') format('opentype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Sans-Pro'; | ||
src: url('fonts/SourceSansPro-Bold.otf'); | ||
src: url('fonts/SourceSansPro-Bold.otf') format('opentype'); | ||
font-weight: bold; | ||
font-style: normal; | ||
} |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.