Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8451171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:09:55+00:00 2026-06-10T11:09:55+00:00

Possible Duplicate: Pass a PHP string to a Javascript variable (including escaping newlines) Let’s

  • 0

Possible Duplicate:
Pass a PHP string to a Javascript variable (including escaping newlines)

Let’s say there is some PHP file called as scheduler.php. It contains a script

<script>
window.setInterval(function(){
    find_opt_schedule();
}, 60000);
</script>

… and some PHP code:

<form action="scheduler.php" method="post">
    <select name="refresh" id="refresh">
            <option value="30000">30000</option>
            <option value="60000" selected>60000</option>
            <option value="120000">120000</option>
    </select>
</form>

How do I use the value selected by the user from refresh select list inside the script? In particular, I want to replace 60000 by the variable that must be selected by the user from the list. I tried this, but the refresh rate is very high instead of 60000 miliseconds.

window.setInterval(function(){
    find_opt_schedule();
    alert(<?php echo (int)$_POST['refresh']; ?>);
}, <?php echo (int)$_POST['refresh']; ?>);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:09:57+00:00Added an answer on June 10, 2026 at 11:09 am
    <select name="refresh" id="refresh">
        <option value="30000">30000</option>
        <option value="60000" selected>60000</option>
        <option value="120000">120000</option>
    </select>   
    
    
    window.setInterval(function(){
        find_opt_schedule();
    }, <?php echo (int)$_POST['refresh']; ?>);
    

    And make sure you use:

    <form action="yourscript.php" method="post" name="form" id="form">
    

    And a submitbutton, or javascript:

    <select name="refresh" id="refresh" onchange="form.submit()">
    
    <input type="submit" value="Set refresh"/>
    

    All together, with session storage:

    <?php 
     session_start();
     if( isset( $_POST['refresh']) ){
       $_SESSION['refresh'] = (int) $_POST['refresh'];
     }
     ?>
    
    <script type="text/javascript">
     window.setInterval(function(){
        find_opt_schedule();
    }, <?php echo isset($_SESSION['refresh'])?$_SESSION['refresh']:120000; ?>);
    </script>
    
    <form action="scheduler.php" method="post" name="form" id="form">
      <select name="refresh" id="refresh" onchange="form.submit()">
        <option value="30000">30000</option>
        <option value="60000" selected="selected">60000</option>
        <option value="120000">120000</option>
     </select>  
     <input type="submit" value="Set refresh"/>
    </form>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Pass a PHP string to a Javascript variable (including escaping newlines) Hy,
Possible Duplicate: Pass a PHP string to a Javascript variable (including escaping newlines) So
Possible Duplicate: Pass a PHP string to a Javascript variable (and escape newlines) I'm
Possible Duplicate: Pass a PHP string to a Javascript variable (and escape newlines) I
Possible Duplicate: How to pass a variable / data from javascript to php and
Possible Duplicate: What's the best way to pass a PHP variable to Javascript? I
Possible Duplicate: How to pass a PHP variable to Javascript? I need to somehow
Possible Duplicate: How to pass JS variable to php? pass a js variable to
Possible Duplicate: Passing javascript variable to PHP Hi I wonder if it's possible to
Possible Duplicate: Is there ever a good reason to pass a string to setTimeout?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.