Jump to content

Cancel Button


brokenhope

Recommended Posts

Im making a cancel button for my registration, and I was wondering how I would get the cancel button to direct you to a diffrent page? I mean do I have to make a whole new <form action="diffrentpage.php" method="post><input type="submit" value="Cancel"></form>? Or can I do some onClick="" event? This might involve some light javascript? Im not sure, but I would prefer it was within the same form tag as the registration button, which submits the form... is that possible? Is that a good or bad idea?
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/
Share on other sites

i dont quite understand what ur saying but what i think you want is a button that directs you to a new page

heres what you can do
go to insert>media>flash button fill out the field EXCEPT for the link part
then ur button will appear
now go to the code and insert this code
[code]
<a href="whateverpage.php" class="style1"></a>
[/code]
that should work

i jus did it this way with inserting the code that way you can change it whenever you want to youdont have to go bak and make a new flash button.

you can also make you own buttons and click on it then fill out the link field
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/#findComment-19828
Share on other sites

That is not what he means, and I would advise using <input type="button" /> not the <button> tag.

I assume you want to have a form that they can submit normally but also cancel it if they want. If you want information to send when they click cancel as well, then you cannot have 2 submit buttons, but you can use:

[code]<input tpye="button" value="Cancel" onclick="window.location='differentpage.php'" />[/code]

Hope that helps. If you do want it to send information, then let me know and you can do it with javascript.
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/#findComment-19893
Share on other sites

[!--quoteo(post=357540:date=Mar 23 2006, 03:48 AM:name=Gast)--][div class=\'quotetop\']QUOTE(Gast @ Mar 23 2006, 03:48 AM) [snapback]357540[/snapback][/div][div class=\'quotemain\'][!--quotec--]
[!--coloro:red--][span style=\"color:red\"][!--/coloro--][!--sizeo:3--][span style=\"font-size:12pt;line-height:100%\"][!--/sizeo--]That is not what he means, and I would advise using <input type="button" /> not the <button> tag.[!--sizec--][/span][!--/sizec--][!--colorc--][/span][!--/colorc--]

I assume you want to have a form that they can submit normally but also cancel it if they want. If you want information to send when they click cancel as well, then you cannot have 2 submit buttons, but you can use:

[code]<input tpye="button" value="Cancel" onclick="window.location='differentpage.php'" />[/code]

Hope that helps. If you do want it to send information, then let me know and you can do it with javascript.
[/quote]
what ever itll do the same thing
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/#findComment-20166
Share on other sites

[!--quoteo(post=357821:date=Mar 24 2006, 01:45 AM:name=.-INSANE-.)--][div class=\'quotetop\']QUOTE(.-INSANE-. @ Mar 24 2006, 01:45 AM) [snapback]357821[/snapback][/div][div class=\'quotemain\'][!--quotec--]
what ever itll do the same thing
[/quote]

Yes, but it will probably not validate.
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/#findComment-20305
Share on other sites

[!--quoteo(post=357970:date=Mar 24 2006, 05:08 PM:name=Gast)--][div class=\'quotetop\']QUOTE(Gast @ Mar 24 2006, 05:08 PM) [snapback]357970[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Yes, but it will probably not validate.
[/quote]

Why don't you have the buttons like


[code]<input type="submit" name="submit" value="submit" />
<input type="submit" name="submit" value="cancel" />[/code]

Then on the page the form usually leads to, check the submit value first off and redirect if it's cancel.
Link to comment
https://forums.phpfreaks.com/topic/5538-cancel-button/#findComment-20728
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.