Results 1 to 5 of 5

Thread: Next page selection

  1. #1
    Join Date
    Aug 2008
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question Next page selection

    I'm not sure this is such a popular one which seems a good enough reason to post it...

    I have a series of images where any number can be selected by clicking on them. After submitting using a button the user is then directed to another page - here I want that the same images that were selected in the previous page to be selected.

    Does anyone know how I could do this?

    Similarly I will want to mail this information to myself..

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    To mail this to yourself would be easy.
    Here's a simple way to do what you want that requires Javascript.
    Code:
    <script type="text/javascript">
    function changeValue(valC,elCh){
    document.getElementById(elCh).value=valC;
    }
    </script>
    <img src="http://puppywar.com/images/cards/31309.jpg" onClick="changeValue('4','hiddenEl');" ?>
    <form>
    <input type="hidden" value="null" id="hiddenEl" name="numbers"/>
    </form>
    There's a hidden element called "numbers," if you need any help embedding this into php, just tell me. I'd be happy to help.
    Jeremy | jfein.net

  3. #3
    Join Date
    Aug 2008
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Great answer..

    ummm.. help embedding this into php would be unreal - I'm hardly an expert as you may well have guessed and really could do with all the help that I can get.

    Appreciatively_g

  4. #4
    Join Date
    Aug 2008
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question

    Is 'changevalue' really a valid action (within the coding)?

  5. #5
    Join Date
    Aug 2008
    Posts
    29
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question

    I appreciate your suggestion here but I really need some more guidance as it is not working for me..

    _with appreciation

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •