Is it possible to put php variables in Agent Script?
For instance, I would like to do the following.
Every time we reach Postal_Code 999 the background of script will change to red. Here is a sample of my code.
<?php
$Postal_Code = "999";
$bg="";
if($Postal_Code=="999")
{
$bg = "style=' background:#ff0000;'";
}
?>
<body<?php echo $bg;?>>