Click to See Complete Forum and Search --> : Trying to intergrate two buttons?


A_Very_Wild_Wil
03-15-2007, 02:43 PM
Be kind to me please :)

I have a php page with a button, when clicked, take you to a fresh page. Here is the code
<?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?>

I would like to add a simple tick box form to the above php page, but I'd like help with getting the above button to work with my form. The button code for my form is like this <input type='submit' value='Submit Form'><input type=reset value='Clear Form'></form>

Anyway, can any one give me guidance on combining the above please?

steve

bathurst_guy
03-23-2007, 07:22 AM
Your php code refers to a predefined function that you have not included. There is nothing we can do to assist unless you post that function too.

A_Very_Wild_Wil
03-23-2007, 04:18 PM
Your php code refers to a predefined function that you have not included. There is nothing we can do to assist unless you post that function too.

Thanks for the reply.

I've now managed to sort the above out with the following
<INPUT TYPE=IMAGE NAME=SUBMIT SRC=button_continue.gif>

</form>
Basically hitting any key, activates the 'form' and the php code. So simple in the end :)