Ok, i'll explain what i want to achieve, and hopefully you guys can help me.
I'm very new to vBulletin and my knowledge of php is also not 'the' best
I have a php script that is creating a linklist from files within a directory.
At the end of the script i have an echo statement to display the list.
What i want is to have this showing up inside a vbulletin page.
The only thing i have achieved so far is including this script in the new page i have created according to this:
https://vborg.vbsupport.ru/showthread.php?t=228112
I have put
PHP Code:
require_once('./script.php');
This end up in showing the created list above the forum header!
So what i want to achive is:
Including the output of several php scripts in several vbulletin pages.
www.mysite.com/script1.php >
www.mysite.com/page1.php
www.mysite.com/script2.php >
www.mysite.com/page2.php
and so forth.