Jump to content
  • 0

Считывание переменной из другого файла.


Grasss
 Share

Question

Всем привет!! на сайте 3 скрипта типа:
<script class="source" type="text/javascript">
$('.countdown').downCount({date:'<?php include("time.php"); ?>',offset: +3},function (){
function xx(){$("#start").click();}setTimeout(xx, 1500);
});</script>

<script class="source" type="text/javascript">
$('.countdown2').downCount({date:'<?php include("time.php"); ?>',offset: +3},function (){
function xc(){$("#stop").click();}setTimeout(xc, 1500);
});</script>

<script class="source" type="text/javascript">
$('.countdown3').downCount({date:'<?php include("time.php"); ?>',offset: +3},function (){
function xs(){$("#reload").click();}setTimeout(xs, 1500);
});</script>

в файле <?php include("time.php"); ?> находится три строки с датами и временем
$a = 11/09/2017 08:00:00
$b = 11/09/2017 12:00:00
$c = 11/09/2017 16:00:00

мне нужно чтобы все три скрипта обращались к одному и тому же файлу time.php и считывали с него нужную переменную, таймер 1 считывает значение $a, таймер 2 считывает значение $b, таймер 3 считывает значение $c, но как это сделать при помощи инклудов?

ps: не пинайте сильно.

Edited by Grasss
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

<?php include("time.php"); ?>

<script class="source" type="text/javascript">
$('.countdown').downCount({date: '<?php echo $a;?>',offset: +3},function (){
function xx(){$("#start").click();}setTimeout(xx, 1500);
});</script>

<script class="source" type="text/javascript">
$('.countdown2').downCount({date: '<?php echo $b;?>',offset: +3},function (){
function xc(){$("#stop").click();}setTimeout(xc, 1500);
});</script>

<script class="source" type="text/javascript">
$('.countdown3').downCount({date: '<?php echo $c;?>',offset: +3},function (){
function xs(){$("#reload").click();}setTimeout(xs, 1500);
});</script>

а в файле time.php следующее содержимое:

<?php
$a = '11/09/2017 08:00:00';
$b = '11/09/2017 12:00:00';
$c = '11/09/2017 16:00:00';

 

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy