Skip to content

rajendraarora16/pastebin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pastebin-tool-opensource-project

It highlights your source codes and generates URL to share with anyone.

If you wish to see demo you could visit here:

To create database table, you need to follow this query:


create database if not exists pastebin;
use pastebin;

create table if not exists paste_tool(
id INT NOT NULL auto_increment,
gen_key INT(100) NOT NULL,
title VARCHAR(1000) NOT NULL,
source_codes VARCHAR(1000000) NOT NULL,
PRIMARY KEY(id)
);

select * from paste_tool;

About

Highlight your source code and share it with everyone

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published