0

What would be the exact CodeIGniter format to the below form tag. Thanks

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

Will this work

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

1 Answer 1

3

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.

Sign up to request clarification or add additional context in comments.

1 Comment

also give a +1 for question if you like

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.