Thanks a head of time for anyone two takes the time to answer one of them 🙂 (Sorry for the novel, coffee makes me ramble.)
My question is about php and if it's reasonable to use a script like this, VS plain HTML. I work with an intense amount of tables, and while I'm making efforts to lessen the amount I use there are still a lot of reasons I need them.
My question is, how much EXTRA load will php produce to create my tables VS the amount of load it'll take for a browser to load some times up to an 85KB HTML file. Since the HTML is going to load either way, the only point to this is making my life easier. Instead of doing a 1,000 line HTML file I'd only have to write a 30 Line php file. In a php file, each table row would look like so;
echo "$i[1] Teak bed $i[2] 40 $i[3] 3 Teak planks 2 Cloth $i[4] 300 $i[5]";
Perhaps up to 30 lines
So, think it'll be a reasonable sacrifice of my time vs extra load?
I know this is confusing, sorry about that.