我有一個名爲「usera_authentication.html」的html文件,其中輸入3個文本字段的數據。在sumit按鈕上重定向到「usera.php」。 usera.php有下面的代碼。如何在執行某些操作後執行包含的文件
<body>
<div class="container">
<div class="pane" id="pane_0">
<img src="video_logo.png">
</div>
<div class="pane" id="pane_1" style="display: none">
<input type="button" value="Call Customer Care" id="call" class="btn btn-info btn-default btn-block">
</div>
<div class="pane" id="pane_2" style="display: none">
<div id="video_container"></div>
<input type="button" value="Stop Call" id="quit" class="btn btn-danger btn-default btn-block">
</div>
</div>
<script>
var userid="<?php echo isset($_POST['userid'])?$_POST['userid']:'';?>";
var userName="<?php echo isset($_POST['userName'])?$_POST['userName']:'';?>";
var remoteUserId="<?php echo isset($_POST['remoteUserId'])?$_POST['remoteUserId']:'';?>";
</script>
<?php if(isset($_POST['userid']) && $_POST['userid']!=""){ echo "in"; ?>
<script type="text/javascript" src="conference.js"></script>
<script type="text/javascript" src="https://api.bistri.com/bistri.conference.min.js"></script>
<?php } ?>
</body>
我在$ _POST中獲取數據,它完全在變量中初始化。 現在在conference.js文件中使用這些變量「userid,userName,remoteUserId」並使用這些變量連接過程發生。現在
我的問題是變量從$ _ POST初始化,原因在於我沒有得到在connection.js文件和連接不正確的情況發生前值connection.js文件執行。
有沒有人有任何想法如何解決我的上述問題?
總之我的目的是從usera_authentication.html文件傳遞的數據,並在其中包含在usera.php connection.js文件中使用這些數據。我不能直接傳遞給connection.js文件,因爲它是全局文件,它也將使用userb.php文件中的usera.php文件。
任何幫助將不勝感激。