TablePress Table and Cells with external data
-
Hello,
I created a table – now it’s small – and I have URLs with .txt file which should be shown in the right cells.
A B C D E F
1
2
3
4
5For example :
A1 –> url.com/firstcell.txt
A2 –> url.com/secondcell.txt
…The text inside that txt file should be shown (echo) in the cells.
The only way, I’m new to TablePress, I know, was to do it with PHP :
<?php $content = file_get_contents("https://url.com/dir/dir/textfile.txt"); echo $content; ?>
### I have 2 Problems :
1) If I use formulas to ad them together TablePress says that there are no numbers. But in the table on my website i can see them.
2) I see, that loading this page with the Table, with a lot of PHP file_get_contents, loads really slow.
Is there anohter way to show the content of the .txt files than PHP?Thank you very much in advance.
HP
- The topic ‘TablePress Table and Cells with external data’ is closed to new replies.