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 405223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:22:50+00:00 2026-05-12T17:22:50+00:00

I am looking for an simple online text editor that will load an online

  • 0

I am looking for an simple online text editor that will load an online file (CSS) and allow a user to make changes then save the file to their desktop. Syntax highlighting would be nice, but not necessary.

I found Edit Pad which would be ideal, except I need to be able to load the content into it. Most of the users I help need step-by-step instructions and would be making minimal changes to the css like colors and image urls. Having an editor like this would make it easier for me to help them (some have edited their css files and saved it as a rtf).

Edit: I have a site (php & jQuery) that I could host a program – something like CKEditor (but I don’t see a “save file to desktop” option).

  • 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-12T17:22:50+00:00Added an answer on May 12, 2026 at 5:22 pm

    You can write a small PHP script that grabs a URL’s contents and posts it to a pastebin and then redirects you there.
    This script posts to http://pastebin.com/

    <?php
      /* Get the contents of the url in the query */
      $url = $_GET['url'];
      $ch = curl_init($url);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
      echo curl_error($ch);
      $content = curl_exec($ch);      
      curl_close($ch);
    
      /* Create a Pastebin from the contents */
      $action = 'http://pastebin.com/pastebin.php';
      $postdata = array(
        'format' => 'text',
        'paste' => 'Send',
        'code2' => urlencode($content)
      );
      foreach($postdata as $key=>$value) {
        $postdata_string .= $key.'='.$value.'&';
      }
      rtrim($postdata_string,'&');
    
      $ch = curl_init($action);
      curl_setopt($ch, CURLOPT_POST, 1);
      curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata_string);
      curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
      curl_exec($ch);
    
      // *** Redirect to Pastebin ***
      header("Location: ".curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
    
      /*
        Make sure that any code below
        does not get executed when we redirect.
      */
      exit;
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a simple JavaScript example that updates DOM. Any suggestions?
I'm looking for a simple file format to use for wireframe models. I am
I'm looking for a simple, but cross-platform negate -process that negates the value a
I'm looking for (simple) examples of problems for which JMS is a good solution,
I'm looking for a simple way to encrypt my soap communication in my C#
I am looking for a simple way to get a mime type where the
I am looking for a simple unpatented one-way encryption algorithm, preferably in c. I
I'm looking for a simple, easy to understand algorithm to alphabetically sort an array
I'm looking for a simple protocol to control remote processes from one managing application.
I'm looking for something simple to use where the grammar is easy to define.

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.