Search results

  1. M

    PHP Delimiting Quotation marks?

    Hey. I'm working on a PHP comment system and came across the problem that the commentator's quotation marks are delimited when written to the comment file, so the output would end up like this for example: "That is your father\'s! It\'s special to him!" (random sentence). How do I disable this?
  2. M

    C++, CGI, and a web host?

    Hi! I use C++ a lot to create games and applications, so I really like the language. I also develop websites with PHP, but I don't really like PHP. Recently I picked up C++ How to Program from Deitel and Deitel, and it explains that C++ can be used with the CGI to create websites. I've made my...
  3. M

    PHP refresh reruns and saves again?

    I am coding a forum in PHP for my website, but I keep having the problem that when the user refreshes the page, the browser states "we will have to resend old information." Is there a way that I can stop that from happening? I am using $_POST to send the variables, and $_GET to indicate...
  4. M

    PHP:Write w/o deleting next characters?

    I am coding a simple forum, and I am having trouble with saving a reply to the file. What the code does is read through the file until it gets to the correct position. It is then supposed to write the comment. What it does do is overwrite the next characters in the file until the comment fits...
  5. M

    PHP:Read, clear contents, then write?

    How do I clear the contents of a file in r+ mode after reading the file? All I need to do is read the current number in the file, change that number, and write the new number into the file (overwriting the previous number). How can I do this?
  6. M

    PHP:Read, clear contents, then write?

    How do I clear the contents of a file in r+ mode after reading the file? All I need to do is read the current number in the file, change that number, and write the new number into the file (overwriting the previous number). How can I do this?
  7. M

    PHP $_POST w/o submit button?

    I am trying to make a form to submit a forum post, but I do not want to have a "Submit" button. Is it possible to just have a link to the submission page, and if I can link it, will the $_POST variables and their values pass to the next page? Another question that could help with the problem...
  8. M

    PHP FTP Help "page not found"?

    I just finished coding a forum for my website, and when I try to access a certain page, my server (noads.biz) brings up a page telling me that the page cannot be found. The URL for the page is coded in PHP like "http://mysite.com/thePageIWant.php?topic=theTopicIwant". It is coded to display...
  9. M

    Where is a old Palm OS SDK download?

    I need to find a download for the Palm OS SDK version 3.5. Everywhere I've looked leads me to this site called ACCESS, which must've bought the original site or something. I can go like 9 pages back on a search engine and there isn't anything. Can someone point me in the right direction...
  10. M

    Help with writing HTML to a file with C++?

    I am making a C++ app that lets laptop users take flash games off the internet and add them to their offline game library. The application is designed to get the game's filename and the main name of the game. The application then writes a link (in HTML) onto a html file and the process is...
Back
Top