HELP with the isset function

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: HELP with the isset function

Post by requinix »

vlio20 wrote:yes i checked them, what do you mean by "What's the HTML source "?
Nevermind, you saw my post before I edited it.

You have to use the same one <form> for all the form fields. Wrap it around all the buttons, checkboxes, textboxes, and everything else you want to submit.

Code: Select all

                <aside id="main_aside"> <?php  accountLinks(0);  ?></aside>
                <form method="post">
                        <div id="messagebar">
                                <input type="submit" name="db" class="groovybutton" value="Delete"/>
                                <input type="submit" name="archive" class="groovybutton" value="Archive" />
                        </div>

Code: Select all

                        </aside>
                </form>
                <?php footerCode();?>
        </div>
vlio20
Forum Commoner
Posts: 26
Joined: Sat Jun 02, 2012 6:46 am

Re: HELP with the isset function

Post by vlio20 »

I fixed it (with your help requinix) thanks a lot!!!! it needs to be under the same <form>
Post Reply