简体   繁体   English

CodeIgniter表单操作网址变量

[英]CodeIgniter Form Action Url Variable

What would be the exact CodeIGniter format to the below form tag. 以下表单标签的确切CodeIGniter格式是什么? Thanks 谢谢

    <form action="links/link1.php?view=one" method="post">

Will this work 这项工作会吗

        echo form_open('links/link1.php?view=one'); 

That's right. 那就对了。

echo form_open('links/link1.php?view=one');

will create a form similar to this: 将创建类似于以下形式:

<form action="links/link1.php?view=one" method="post">

Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM