Skip to content

Instantly share code, notes, and snippets.

View Fluxpuck's full-sized avatar
👉
commit early, commit often, regret later

Mathijs Fluxpuck

👉
commit early, commit often, regret later
View GitHub Profile
@Fluxpuck
Fluxpuck / Tabel SQL
Last active October 2, 2018 19:56
PHP - Upload, Rename and Validate image
CREATE TABLE images(
uid INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(50),
tmp_image VARCHAR(50) NOT NULL,
new_image VARCHAR(50) NOT NULL,
title VARCHAR(50) NOT NULL,
text VARCHAR(250),
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);