Jump to content

Another Noob Question about uploading images


philgreg

Recommended Posts

Ok guys sorry about this...

 

 

I have built a form  in this form there are several field one allows the editors to upload images for a blog post

 

I have a button that allows you to open a child window .

 

the child window does the uploading....here's the code...it all works nicely

it writes the variable in the form page it gets sent to , "in this case addPost.php"

 

however addpost.php is opening up in the child window.  I just want the child window to close and as it does the variable to show up in the parent window.

 

Heres the child window code, can you help me ?

 

 

 

 

 

 

       

<body onunload="window.opener.location.reload()">

 

<form action="addPost.php" method="post" enctype="multipart/form-data" name="form" id="form">

<input name="var" type="hidden" value="value="<?=$name?>" />

 

<table width="51%" border="1" bgcolor="#CCCCFF">

  <tr>

    <td width="34%">choose image </td>

    <td width="66%"><input type="file" name="imgfile" /></td>

  </tr>

  <tr>

    <td><label></label></td>

    <td><input type="submit" name='submit' value="add post" />

 

 

      </td>

  </tr>

</table>

<p></p>

 

 

</form>

 

?>

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.