1
0
2013-08-17 13:43:49 +02:00
2014-12-23 03:09:12 +01:00
2013-08-07 18:53:19 +02:00
2013-08-07 18:53:19 +02:00
2014-09-03 10:07:10 +02:00
2013-08-19 11:41:28 +02:00
2013-12-29 07:01:54 +01:00
2014-09-01 08:45:33 +02:00
2013-08-19 11:41:55 +02:00
2013-08-07 18:53:19 +02:00
2013-08-07 18:53:19 +02:00
2014-09-02 13:37:25 +02:00
2013-08-07 18:53:19 +02:00
2013-08-07 18:53:19 +02:00
2014-09-03 10:07:10 +02:00
2013-08-07 18:53:19 +02:00
2014-12-23 03:09:12 +01:00

this is a playerskin database with a html user interface for the game minetest-c55

#Instalation instruction: you must create the file connectsql.php first. enter all connectinformation and than connect to mysql and select a database

if you want the report function working than you shuld enter your email in the $report_mail. 1.

#!php


	<?php 	
	$MYSQL_HOST = "localhost"; //server address to the mysql server	
	$MYSQL_USER = "***"; //username to the database	
	$MYSQL_PW = "***";// the pw for the user	
	$MYSQL_DB = "***";//the name of the db	
	$conn = mysql_connect($MYSQL_HOST, $MYSQL_USER,$MYSQL_PW); /* connecting to mysql */	
	mysql_select_db($MYSQL_DB,$conn); /* connecting to the database */
	
	$report_mail = "somebody@somebody.tld" //the email where all reports will sent
	?>

  1. execute the mt_skins.sql file to create the table.

  2. run the index.html page and use the upload function to insert some images

#IMPORTANT info for people who want to help me with this project:

pull requests are welcome! but if you are doing some changes on the database please save that in the mt_skins.sql file too before you create a Pull Request!

Description
Languages
CSS 43.5%
JavaScript 21.5%
HTML 18.1%
PHP 16.9%