如何在同一文件中获取Twillio中的用户输入

时间:2016-09-17 06:46:50

标签: php

我想在同一个文件中获取用户输入并用于某些操作。

    echo '<Say>Please enter the number followed by hash key..</Say>';

    echo '< Gather  '.$number1    = (int) $_REQUEST['Digits'].'> </Gather>' ;

    echo '<Say>Enter the secod number followed by the hash key...</Say>';
    echo '< Gather  '.      $number2 = (int) $_REQUEST['Digits'].'> </Gather>' ;
    $sum = $number1 + number2
    echo ' $sum'; 

这是使用Gather的正确方法吗?

0 个答案:

没有答案