• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Passing Args to PHP module

dajo

Senior member
I don't know much about PHP yet, but I know that an arg can be passed to a PHP module in the following manner:

<a href=&quot;.../module.php?id=value&quot;>

But I've only been able to pass one value that way.

Is there a way to pass more than one value or do I have to parse the string in the receiving module in order to extract them?
 
works like so ...

< a href=&quot;.......yadayada.php?id=10&amp;name=randal&amp;lastname=kohutek&quot; >

use &quot; &amp; &quot; to separate variables.

hth,
randal
 
Back
Top