Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么办法可以让我在这段代码中获取 id:
header('Location: assigned.php?success?$ticket_id');
我是 PDO 的新手。对不起这个简单的问题
您要添加?两次。它应该像..
?
header('Location: assigned.php?success='.$ticket_id);