Jump to content

loading content from a file into a new window


dmikester1

Recommended Posts

Your pop-up html page should be a .php file somewhere on your server.  In that php file, you'll get your file name via $_GET[].

 

You take the filename and use that to point to a file.  echo the fread() of that file to the user.

Well, i have the popup working.  I just need to load the relevant content into it.  Here is the line that pops up the file editor:

win = window.open('FileEditor.php?dir=<?=$_GET['dir']?>','window','height=600, width=700,toolbar=no,directories=no, status=no, menubar=no,scrollbars=no,resizable=yes');

No, 'dir' is the folder name where I currently am when I click on the link.  I have my app listing out all the files in the directory automatically and it sticks an "edit" link next to each filename.  How can I pass the name of the file onto the FileEditor.php popup when I click "edit"?

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.