The code I originally wrote would accept the lead source being passed as 'source' or 'ls'. Pick which one you like and make sure the code reads it.
So an example would be:
| Code: : |
http://www.yoursite.com/page.php?source=YourLeadSource
|
Then your php code would need to do read that variable like this:
| Code: : |
$source = $_REQUEST['source'];
|
Make sense?