Mike D'Ambrogia wrote:
Need to figure out how to grab the passed variable in my php AGI scriptI pass it in via the Dialplan like this: exten => 420,1,Answer exten => 420,n,DigitTimeout(5) exten => 420,n,ResponseTimeout(10) exten => 420,n,Flite("enter the one digit code") exten => 420,n,Read(CODE,beep,1) exten => 420,n,AGI(yy.php|${CODE}) Inside of yy.php how would I reference ${CODE} to expose it?? It doesn't seem to come in with the standard variables that asterisk passes to the AGI, at least the debugging loop that I have writing to log file doesn't expose it as part of the std variables mike
Hi, in your AGI use: GET VARIABLE CODE thanks, Yusuf -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
