I want to be able to open a window with a variable. For example, I will use domain.com?reference=1234- This link will open a pop up window as follows:
<a href="javascript:popUp('http://www.domain.co.uk/staff/tpr/update_action_log.php?action_reference=<?php echo $row2['action_reference']; ?>')" title="Click Here edit this entry"><?php echo $row2['action_reference']; ?></a>
When I open this window, it is always showing data put in last, it isnt refreshed.
I wanted to open this pop up window, enter data and then click submit and make the data enter the database and then refresh the parent window.
Every time I have done this, either the parent or the pop (or both) is showing old data.
HELP!!
It seems so basic. I have used pop ups before and not had this problem