when we select some checkboxes and we went for next page if
we came back to prevoius page the selcted checkboxe should
be checked
Answers were Sorted based on User's Feedback
Answer / blessed
session variable is better than cookies
in the second page each values in $_session array or in
different $_session varibales.
like $_SESSION['chk1']=$_POST['chk1'];
and then if you go to previous page u will get the value
$chk1=$_SESSION['chk1'];
echo "".$chk1;
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / lamp
Store the Checkbox values in cookie, you can fetch the
cookie value when u come to this page again
| Is This Answer Correct ? | 2 Yes | 1 No |
how to install openssl, ISAPI, pdf modules in php 5.2.5 with apache on windows xp.
Php being an open source is there any support available to it?
Is it possible to get the screen resolution and like with php?
How do I check if a given variable is empty?
how to extract month from given date by using string functions?
Tools used for drawing er diagrams?
Tell me what is the use of the function htmlentities?
Explain some of the php array functions?
What the difference between the 'bitwise and' operator and the 'logical and' operator?
What is the exact Diff. between include_once() and require_once() in PHP?
Is php free to use?
Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?