how to get the value in script values
Answer / p.sivasankar
ex:in java script
function DLEAVEValidate()
{
alert(window.document.getElementById("V_DLEAVE").value);
}
in php:
<form action="welcome.php" method="get">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
Welcome <?php echo $_GET["name"]; ?>.<br />
You are <?php echo $_GET["age"]; ?> years old!
(or)
Welcome <?php echo $_REQUEST["name"]; ?>.<br />
You are <?php echo $_REQUEST["age"]; ?> years old!
| Is This Answer Correct ? | 1 Yes | 0 No |
Which function can be used to delete a file?
How can we check the value of a given variable is alphanumeric?
Which method do you follow to get a record from a million records? (Searching not from database, from an array in php)?
Is nan in javascript?
for image work which library?
when we select some checkboxes and we went for next page if we came back to prevoius page the selcted checkboxe should be checked
how do we can copy of the content of a web page with the help og the URL and display them onto any other page
Is it possible to get the screen resolution and like with php?
How can we get the browser properties using PHP?
4 Answers Google, Pollux Softech,
What is a role of a designer in web development. Till what level the designer will do his work. Does he gives the complete html file or the tpl file or he should also include the smarty tag in the tpl file.
What new features php7 has in store for us?
What is difference between get and post?