How to change javascript values to php?

Can I make a PHP *variable* so that it *cannot* be overwritten by any following part of the code?

  • I have JavaScript in one part of my code and PHP in another part that are both assigning values to the same variable. I want to make it so that IF this JavaScript function is called (it's a check box that is either checked or unchecked), that the variable will keep the value the JavaScript gives it without accepting the value that PHP gives it later in the code. (where it says "..." below it should really say "checked". I don't know why it's showing up like that) Here is an excerpt of my code with the relevant parts: JS: function toggleprice() { if(document.saleform.postsidenote.che... == true) { document.saleform.postprice.value = 'Free'; document.saleform.postprice.disabled = true; <?php $postprice = 'Free'; ?> } else if(document.saleform.postsidenote.checke... == false) { document.saleform.postprice.value = ''; document.saleform.postprice.disabled = false; } } PHP: if(isset($_POST['postprice'])) {$postprice = $_POST['postprice'];} else {$postprice = "";} Any help would be great! thanks.

  • Answer:

    You could if you if set it as a variable. You can set almost anything as a variable so you can use PHP as a variable.

Jordan at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

You could if you if set it as a variable. You can set almost anything as a variable so you can use PHP as a variable.

Dustin

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.