Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by raphaelp

  1. raphaelp

    passing a value to another page

    Use JavaScript! <a href="javascript:passValues();">...</a> <script language="JavaScript"> <!-- function passValues () { var recid = document.formname.inputname.value; var exrate = document.formanme.inputname2.value; window.location.href =...
  2. raphaelp

    Problems downloading remote files using fopen()

    Thanks for your reply. After trying a little I found out the problem: Apache seems to include HTTP headers into the file or something, messing up the images. Here's a code snippet that fixes the bug. It now works! :) <?php function http_get($url) { $url_stuff = parse_url($url); $port =...
  3. raphaelp

    Problems downloading remote files using fopen()

    Hey all, I've got a big problem. When downloading remote websites using fopen() [sourcecode below] text-files get downloaded correctly however images can't get displayed (they get downloaded, but they're mostly smaller than their original counterparts). The most strange thing, however, is that...

Part and Inventory Search

Back
Top