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.
Bookmarks