|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
How can I send information from one window to another?
I want to send the image’s filename, which in this case is “banana.jpg”, to the red textbox, and then close the popup window.
See the illustration i have attached. (help.jpg) It should be something like the attach system you have here on this forum.. Thanks in advance! -b0zie |
|
#2
|
||||
|
||||
|
After the file is uploaded and moved out of the Temp Directory (doesn't have to be moved, but it is normally easier that way) just use page.php?file=filelocationandname to call the picture into the pop up
__________________
CHornJr "One day I'll know what I am doing" ![]() My Blog Suanhacky Lodge #49 Rebel Squadrons |
|
#3
|
|||
|
|||
|
I don't think you did understand my question, but no problem.. I figured it out by myself
![]() |
|
#4
|
|||
|
|||
|
Quote:
Hi, I am suffering from the same problem, ive managed to get my code to send information in the header when a link is clicked. For some darn reason I cant get the info from the header on the next page. Am I just being stupid in my newbieness? Heres the code that creates the link: <td align=\"left\"><a href=\"quizedit.php?uid={$row['quiz_id']}\">{$row['quiz_name']}</a></td> and heres the created header: http://localhost/quizedit.php?uid=1 Id rather not use cookies if possible Cheers Mike T |
|
#5
|
|||
|
|||
|
It's a javascript:
main.htm Code:
<form name="form">
<input type="text" name="field">
</form>
<a href=# onClick="window.open('popup.htm','PopUP','width=200,height= 200')">Click here to open popup</a>
popup.htm Code:
<a href=# onClick="opener.document.form.field.value='Okay'">Click here!</a> This little script writes "Okey" to the field in main.htm. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > PHP Development > How can I send information from one window to another? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|