Hi everyone,
This is my first post, so I hope I'm asking this question in the right place.
Im trying to add a plugin with a variable $bbuserinfo[field#], I have been doing a lot of research and cant seem to get it to work
In the PHP Code for the plugin, the variable is attached to the end of a URL. Below would be an example of how it looks:
PHP Code:
$file = "http://www.example.com/example.xml=$bbuserinfo[field#]";
Im also using the above to call data from an xml file, like this:
PHP Code:
$xml = simplexml_load_file($file) or die ("Unable to load XML file!");
I have tried $vbulletin->bbuserinfo[field#], but that wont work either.
Can anyone help me?