https://github.com/buganini/mathmlboard
(old stuff) message board with mathml embedding support
https://github.com/buganini/mathmlboard
Last synced: 10 months ago
JSON representation
(old stuff) message board with mathml embedding support
- Host: GitHub
- URL: https://github.com/buganini/mathmlboard
- Owner: buganini
- Created: 2011-08-27T15:45:25.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-08-27T15:49:15.000Z (almost 15 years ago)
- Last Synced: 2025-06-19T12:47:05.141Z (12 months ago)
- Language: PHP
- Homepage:
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
README
#########################################################
# Designed by gmobug (gmobug@gmobug.twbbs.org) #
# Site: http://mathml.twbbs.org #
#########################################################
Database structure
table mathml_topic
field topic_id int
field topic_subject text
table mathml_message
field topic_id int
field message_id int
field message_text text
field message_author varchar(255)
field message_pin varchar(32)
field message_time int
create table mathml_topic (
topic_id int,
topic_subject text
);
create table mathml_message (
topic_id int,
message_id int,
message_text text,
message_author varchar(255),
message_pin varchar(32),
message_time int
);