I looked at the form helper in the 1.2 API for a button, and it
currently triggers an error (heh, "Don't use me yet"), so instead of
using a nifty helper, you could just use basic HTML for it. Something
like this:

<input type="button" value="Button Text"
ONCLICK="window.location.href='http://www.linkhere.com'">

or using a cake built URL:

<input type="button" value="Button Text"
ONCLICK="window.location.href='<?php echo $html->url('index'); ?>">


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to