Recent content by jehovaswalrus

  1. J

    Is there a PHP script that can dynamically export data from a data table to an...

    ...XML document? The XML document will be hosted on the same server as the PHP file if that makes a difference.
  2. J

    Is there a PHP script that can dynamically export data from a data table to an...

    ...XML document? The XML document will be hosted on the same server as the PHP file if that makes a difference.
  3. J

    Cocoa Objective-C iPhone NSString comparison question?

    In Objective-C, it is possible to compare two NSString objects by stating: if ([string1 isEqualToString: string2]) { //Code } How do I compare whether or not string1 is NOT equivalent to string2? I tried: if (string1 != string2) This doesn't work.
  4. J

    In c++, can you write to a file that cannot be read by any program other than that...

    ...program? I understand that you can use any file extension you want when creating the file, but all a smart person has to do is assign Notepad to it and it can be read and edited without the help of my program.
Back
Top