Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1067157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:07:11+00:00 2026-05-16T20:07:11+00:00

how can I programm a button so that when clicked should open the save

  • 0

how can I programm a button so that when clicked should open the save as dialogue box?

Put simply, how can I save a file on the local machine using javascript or php? I really don’t know how to go about it.

Thanks in Advance.

EDIT:

Thanks for the quick response. I have a table that I have displayed on a web page, and a button, so that when that button is clicked, the user can specify the file path, and save that table as a .txt file to the specified destination.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:07:12+00:00Added an answer on May 16, 2026 at 8:07 pm

    In PHP, you can set the Content-Disposition header to Attachment, which will tell the browser that the content being served is an attached file, which is to be downloaded:

    <?php
    header('Content-type: application/pdf');
    header('Content-Disposition: attachment; filename="downloaded.pdf"');
    readfile('original.pdf');
    ?>
    

    EDIT

    To better fill the requirements of your updated question, you want to create a PHP-file that serves the table in the format you want it to be downloaded.

    <?php
        header('Content-type: text/plain');
        header('Content-Disposition: attachment; filename="downloaded.txt"');
    
        echo " entire table here ";
    ?>
    

    And then have your save button point to that pdf file

    onclick="location.href='downloadTable.php?tableID=5';"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.Net page that has a button that when clicked I would
What program can I use to decompile a class file? Will I actually get
I have a C#/.NET program that can run both as a console application and
I have a program that can have a lot of parameters (we have over
so that you can make your program concurrent easily in the future.
I noticed that I can start a program with it's associated handler by writing
I'm trying to make a button class (abstract) so I can set what function
Can you program/configure Visual Studio to produce custom intellisense for your own server controls.
Various programs can do stuff only when you haven't used the computer for a
Summary: Can I program a thick client game in C without reinventing wheels ,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.