The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Quoting Strings problem
Hello,
I am trying to have my plugin to communicate with external php file. I need to send two values into the php file that deals with them and echo the result and then get the result by my plugin. The problem is I have quoting strings problem preventing the plugin from working like what I need. This is my code: In my plugin: This does not work $id1 = 1; $id2 = 2; ob_start(); include('www.domain.com/test.php?idd1=' . $id1 . '&idd2=' . $id2); $result = ob_get_contents(); ob_end_clean(); But this does work: ob_start(); include('www.domain.com/test.php?idd1=1&idd2=2'); $result = ob_get_contents(); ob_end_clean(); Any help? Thank you |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|