Quote:
Originally Posted by zlos
Dear Logician
Definitely I cannot find way to make it working. Would you please let me know WHAT shall I put WHERE? I have read your instructions carefully, made some tens of tests and still cannot pass variable to the query.
Regards
Tom
|
I think webtemplate "priv_privatemessages" is a good starter to see how this is used. Its phpinclude field says:
PHP Code:
$pm_number = intval($_GET['pm_number']);
if ($pm_number <= 0)
{
$pm_number = 30;
}
First line here is the important one and it tells webtemplates hack to know variable "$pm_number" as the GET value of 'pm_number' which comes through the URL.
So when you use an URL like
http://www.myboard.com/forum/view.php?pg=priv_privatemessages&pm_number=50
the value of $pm_number in the webtemplate will be 50. Then you can use it directly in your webquery just like I did in the webquery named "$WQ_priv_privatemessages".
Hope this clarifies better?