jmckirdy / Codex-Arcanum

The Mad Wizard's Coding Notes
GNU General Public License v3.0
1 stars 0 forks source link

Connect frontend buttons to server data location #11

Closed jmckirdy closed 5 months ago

jmckirdy commented 5 months ago

Make the input elements from upload page (type, category, choose file button) send the data to the server.

jmckirdy commented 5 months ago

got type working

jmckirdy commented 5 months ago

category dropdown working now. had the change the value= to 1,2, etc. since that is the $catid POST value.

jmckirdy commented 5 months ago

fyi: 'choose file' button handles sending data (pdfs currently, later, docx, rtf, xml, html) to server via POST (currently), the server stores these 1-7M files as large BLOB types. then it needs a decent amount of PHP code to parse/then echo the data onto the page. So I'm closing OLD issue and making a NEW one just for this.