Here is part of my url:
- Code: Select all
http://domain.com/vicitest.php?lead_id=--A--lead_id--B--&dispo=--A--dispo--B--&recording_filename=--A--recording_filename--B--&vendor_id=--A--vendor_lead_code--B--&list_id=--A--list_id--B--&gmt_offset_now=--A--gmt_offset_now--B--&phone_code=--A--phone_code--B--&phone_number=--A--phone_number--B--
It keeps going to get more fields, but maybe someone sees something that I don't. In my php file, I have the following:
- Code: Select all
$lead_id = $REQUEST['lead_id'];
$status = $_REQUEST['dispo'];
$user = $_REQUEST['user'];
$list_id = $_REQUEST['list_id'];
$gmt_offset_now = $_REQUEST['gmt_offset_now'];
$phone_number = $_REQUEST['phone_number'];
$first_name = $_REQUEST['first_name'];
$last_name = $_REQUEST['last_name'];
...etc...etc.
Then I have those values being emailed to myself to test. Like I said, the only one I'm not getting is Lead ID. Any help is greatly aprpeciated.