Results 1 to 3 of 3

Thread: Convert PHP to ASP

  1. #1
    Join Date
    Jun 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Convert PHP to ASP

    I have this one short section of code that I need to convert to ASP. Currently it's in PHP and our server does not support that. this code would be used to get someone's email address for a newsletter. I would really appreciate your help.
    Here is the code:

    PHP Code:
    <?php
    $var 
    ', '.$_GET['var'];

    $fp = @fopen("file.txt""a") or die("Couldn't open file.txt for writing! "$var ); 
    $numBytes = @fwrite($fp$var) or die("Couldn't write values to file! " .$var ); 
     
    @
    fclose($fp); 
     

    ?>

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Jun 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by djr33 View Post
    I checked that website out, but it didn't seem to convert it correctly, thus it didn't work. I guess it needs that human touch

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •