So, in the template, you can use a lot of very useful variables. But in one of my modifications that I'm working on, I'm trying to get the content of a profile field. And this in a base vBulletin PHP file (functions_newpost.php) (
)
Obviously, that isn't the finished code. I'd need to make another function which strips those fields of certain things, obviously, to prevent people from just executing random PHP code... But the variables for fields 11 and 12 don't like me for some reason. How can I get those variables on to file?
PHP:
$post['message'] = $post['field11'].$post['message'].$post['field12'];
Obviously, that isn't the finished code. I'd need to make another function which strips those fields of certain things, obviously, to prevent people from just executing random PHP code... But the variables for fields 11 and 12 don't like me for some reason. How can I get those variables on to file?