|
The php source files are as follows:
1 <form method = post name = list action = list_all.php>
2 <input type = hidden name = page value = <? = $ Page? >>
3 <input type = hidden name = id value = <? = $ Id? >>
4 <input type = hidden name = select_arrange value = <? = $ Select_arrange? >>
5 <input type = hidden name = desc value = "<? = $ Desc?>">
6 <input type = hidden name = page_num value = <? = $ Page_num? >>
7 <input type = hidden name = selected>
8 <input type = hidden name = exec>
9 <input type = hidden name = keyword value = "<? = $ Keyword?>">
10 <input type = hidden name = sn value = "<? = $ Sn?>">
11 <input type = hidden name = ss value = "<? = $ Ss?>">
12 <input type = hidden name = sc value = "<? = $ Sc?>">
From the browser "View Source File" you can see the returned content to:
...
<input type = hidden name = desc value = "
That's all there is to stop! That is to say, this code will terminate when it reaches the variable $ desc on line 5. It should be a problem with variable $ desc, but I output it with echo before the first line. But it shows that the value is "asc"
And I delete the 5th line. The same error will continue to appear on the 6th line, ... the 9th line, the 10th line, the 11th line ...
This problem is really weird. The younger brother is a novice again. It is really the second monk who is scratching his head. Here I would like to ask your predecessors how to solve it, younger grateful! |
|