Recent content by subexpression

  1. S

    Does anyone know of a good PDF to HTML converter script?

    I'm looking for PHP, Curl, possibly Java, even Perl (yuck) for a web-based PDF to HTML converter. Google searches only turn up desktop applications, but zero web-based scripts. Any ideas?
  2. S

    how to read all http headers with php?

    Hi Eki, $crlf = chr(13) . chr(10); $br = '<br>' . $crlf; $p = '<br><br>' . $crlf; foreach ($_SERVER as $key => $val){ echo $key . ' : ' .$val . $br; } echo $p; Best regards, subexpression
  3. S

    Adding a php include from a root menu?

    Hi Kyle M, I would guess it's: include("../your_file_name.php"); The number of levels you want to go back toward the root, you add on the "../" before the file name. If for some reason you want to back up 2 levels, it would be: "../../your_file_name.php" And 3 levels, it would be...
  4. S

    How strong of an understanding of Javascript do you need to know in order to learn AJAX?

    If you intend to use HTML and CSS, you'll need some Javascript knowledge. I use a Javascript function to create my AJAX objects, then use another to make the request and receive the server response. Here's what I use for "get" request methods: <script type="text/javascript"> // CONTENT DIV...
Back
Top