Skip to content

Instantly share code, notes, and snippets.

@majumawm
majumawm / index.html
Last active September 5, 2016 08:06
fileupload
<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="userfile" id="userfile">
<input type="submit" value="Upload Image" name="submit">
</form>
@majumawm
majumawm / getnextmonth.php
Last active August 31, 2016 17:37
getnextmonth.php
<?php
function getnextmonth($yyyyMM)
{
return date('Ym', strtotime("first day of {$yyyyMM} next month"));
}