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
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:
- How can I make a Spinner only by java?Best solution by stackoverflow.com
- How can I make a download page?Best solution by Stack Overflow
- How can I make a dynamic web page in PHP?Best solution by Yahoo! Answers
- How can I make a consecutive animation of buttons?Best solution by Stack Overflow
- How can I make a good resume even if I have no job experience?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.