Php:不能总结好形式

时间:2016-08-05 19:28:47

标签: javascript php mysql

对不起我的拼写

嗨,我试图让一个网站显示互联网没收,所以在mySQL数据库中我把我所有的信息然后我打印在我的网页上,用户点击他想要的没收,它将他带到另一页这显示了所有的没收信息...在while()中,我为每个放弃制作了独特的形式,然后在

这里的问题是,总结的唯一形式是最后创建的

class _LinkNode:
    def __init__(self, value):
        self.value = value
        self.next = None

class SinglyLinkedList:
    def __init__(self):
        self._head = None
        self._tail = None
        self._length = 0

    def add_to_tail(self, value):
        """
        Add a new node to the tail of the linked list.

        Parameters
        ----------
        value : int, float, string, dict, list, etc.

        """
        new_node = _LinkNode(value)

        if self._head is None:  # if linked list is empty
            self._head = new_node

        if self._tail:  # if linked list has a tail, i.e. > 1 node
            self._tail.next = new_node

        self._tail = new_node  # regardless of current length, update tail

        self._length += 1

def recurse_reverse(self, curr, level):
    # see above

你可以在这里看到我在说什么:http://fournisseursquebec.com/Forfaits.php

只需选择互联网

谢谢!

1 个答案:

答案 0 :(得分:2)

您缺少每个框的结束</form>标记。现在你有一个包含大量重复字段的大表单:

<form method="POST" action="Fournisseurs/Videotron.php" id="'.$id.'">
box 1:
<input type="hidden" name="id" value="'.$id.'"></input>
.... box 2:
<input type="hidden" name="id" value="'.$id.'"></input>
...

各种name的{​​{1}}属性是已发送的属性,并且在每个input内都应该是唯一的。

只需在form循环中添加</form>标记即可。