Skip to content

Instantly share code, notes, and snippets.

View githumbi's full-sized avatar
:octocat:
Code / Design

Joseph Githumbi githumbi

:octocat:
Code / Design
View GitHub Profile
@githumbi
githumbi / README-Template.md
Created February 2, 2020 13:01 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@githumbi
githumbi / upload.php
Created April 22, 2019 09:15 — forked from taterbase/upload.php
Simple file upload in php
<!DOCTYPE html>
<html>
<head>
<title>Upload your files</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Upload your file</p>
<input type="file" name="uploaded_file"></input><br />
<input type="submit" value="Upload"></input>