What I'm trying to do is simply have the user click on a button or link to pass the varible to a popup window. There he/she will be able to enter information then close this window.
It something like the code below;
<script language="javascript">
function verify()
{
window.open('photopol.php','windowname','scrollbars=yes,height=300,width=300');
}
</script>
<td height="55" colspan="2">
<form>
<div align="center">
<input type="button" value="New Window" onClick="verify()">
</div>
</form></td>
</table>
O.K., above is mostly Javascript. But is there a way I could stick the php code.
header('location:photopol.php?image='.$image);
somewhere?
Can it be done in php?
Thanks.
I'm new at this.
Chelsea7