PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I have 1 php page that when a user clicks an image it opens a new php page and passes a variable to the new page. The Problem Im having is that the variable is not getting passed.
I am tagging the image with "value = '".$gCreatorArray[$tCnt]."' but I dont understand why this isnt working, I even tried replacing the variable with 'woohoo' just to see if it would pass an actual string, but that didnt work either.
Worked like a charm! Thank you very much!! I really appreciate the help. Deejay, thank you for your post, I didn't try the var_dump solution so I dont know if that would work or not, but thank you for the help also.
your variable is not getting passed to next page because you form is not getting submitted. you can use the get method to pass the variable to next page on onclick event.