Recent content by souradipm

  1. S

    Forum Name Change Requests

    New name: crate1292
  2. S

    C Dynamic String Allocation

    Hi, I am using C to make something, and part of it requires dynamic string allocation. It works, but not perfectly. The demo below prints "Hell World" instead of "Hello World". Please help me to find anything wrong in it. /* Dynamic String Allocation By Five Point Software 2008 */ #include...
  3. S

    Help with Javascript

    Hi, Dickey, thanks for your suggestion, but after adding the doctype and adding px's to the css, it hasnt made much of a change. I have also fixed that popup bug. It is not in the version on the webserver, but it hasn't solved the IE compatibility problems. Thanks anyway for your help, and I'm...
  4. S

    Help with Javascript

    Hi, Yeah, I use Firefox too. It IS the CSS bugs in IE popping up, because it works in everything apart from IE. That error doesnt hinder the game in any way, its just that dhtml popup thing. I'll fix that after I have fixed the IE bugs. However, can anyone find what is wrong in my code, please...
  5. S

    Count to 1 Million

    477 is less than the number of ways to die
  6. S

    php sessions not working?

    Your script works flawlessly for me. http://www.fivepointsoft.co.cc/testing_area/blah.php?user=hello&pass=hi same code, on my testing area. It's not your code that is the problem.
  7. S

    php sessions not working?

    You have something before the <?php tag. PHP reports session_start() as line 3, and because it is directly under the <?php tag, you have something on line 1 - a newline perhaps? session_start sends a header for the browser to start a session, and it cannot modify them after they have been sent -...
  8. S

    php sessions not working?

    Doesnt show any warnings for me
  9. S

    any help with: Send data to a Text File

    http://uk.php.net/fwrite There are only 2 required parameters to fwrite. Perhaps you mean something like...
  10. S

    Comment Form

    Did you go to http://www.fivepointsoft.co.cc/testing_area/comment.php ? If so, it will not work, because you need to append stuff to the url. If you want, you can split the file across many different php files so you can include them where you want them. Try...
  11. S

    Help with Javascript

    In the live example, the mouseovers don't work. It uses a lot of css, so that could be the problem, but I though I fixed that when I used el.style.setAttribute("cssText","blah") instead of el.setAttribute("cssText","blah") - these are what the browser checks I recently added do. Thanks for your...
  12. S

    Help with Javascript

    lol, that's the problem. Thanks for letting me know it works in Opera, but I posted it here because I need it to work in IE. I know already it's a problem with IE and not my script, but most internet users (i.e. the average person who isnt a geek like you or me) use IE because it comes with...
  13. S

    Comment Form

    Hi, I have cooked up a small script you may edit as you wish. Remember to edit the variable $secret! It doesnt have capcha, but it would be easy to add. Just comment.php?act=create&secret=<secret_code> to create the table after you have made sure the database connection works...
  14. S

    Help with Javascript

    Hi, Jake, javascript does not require semicolons at the end of functions. I just added them in sometimes due to habit(they are required in C, C++, PHP, etc). They should not actually cause a problem. A live version of the problem can be found at: http://fivepointsoft.co.cc/iso/ The map renders...
  15. S

    Help with Javascript

    Hi, I'm making an isometric game engine in javascript, and it works great in Firefox, but it breaks in IE. Can someone help to get it working in IE, please? LINK::http://www.fivepointsoft.co.cc/fpIsoEngine.js I've added in some checks to the browser and added some changes to the style code...
Top