Quote:
Originally Posted by MarkFL
What you could do to pass the threadid to your external script is change the anchor tag as follows:
PHP Code:
<a href="testingthread.php?threadid=' . $threadinfo['threadid'] . '">
And then in your external script, you can retrieve this parameter with:
PHP Code:
$_REQUEST['threadid']
|
Thank you Mark - Perhaps my 'missing link'.
--------------- Added [DATE]1454836359[/DATE] at [TIME]1454836359[/TIME] ---------------
PHP Code:
' . $threadinfo['threadid'] . '
sadly, this part on the ref returns a blank...