Quote:
Originally Posted by kh99
Both of your 'require_once' lines have the same file name.
iframe is an html tag (you don't need to create a bbocde to use one in a template).
To be honest I'm not sure what you're trying to do. It looks like you're trying to use the method in this article to include output from an external file (vbtrade.php), but you also have a template. What are you using that template for, and what output do you expect from vbtrade.php? And where are you trying to include it?
|
Ok, i'll explain, because perhaps i am wrong.
I am trying to make work a vb3 plugin in vb4, and i see in the template this lines:
Code:
[B]<vb:if condition="$stocktable != null">
{vb:raw stocktable}
<br>
</vb:if>
<!-- purchase preview -->
<vb:if condition="$preview != null">
{vb:raw preview}
<br>
</vb:if>
And i read that in vb4 you have to register the variables to make it work, so i thought that i have to register the variables stocktable and preview to make it work. Am i wrong?