Jump to content

erilidon

New Members
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

erilidon's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. In addition, if you try to pull your BS terms of service I'd like to point out the contradiction in it. "The Company, and agents hereof, will at any given time be allowed to modify, move, or delete your content (including any accounts you may have) and that they in general have full control over your content." Then you later state. "By no means will any staff member change a user's account name or delete a user account. So do not ask."
  2. Let me start by saying I don't want to hear crap about resurrecting old posts - This is the only topic I ever posted on in this forum and it's funny to me that I get an email today stating that you have been hacked and my account details were among the ones hacked. This could have been bypassed if you had a method to delete accounts... have one yet?! Honestly at this post it could be considered negligence not to have one.
  3. Well... that's a crap response. I would also like to delete my account in an effort to lesson my online footprint. Furthermore I never use the service and it just seems like you'd have a method to simply allow users to remove their accounts...... it's a common practice.
  4. why doesn't this work? <form action="<? echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="text" id="name" name="name" size="20" /></p> <input type="submit" name="submit" value="Submit" alt="Submit" /> </form> <? if($name != "") { $xml = simplexml_load_file("invoice.xml"); $sxe = new SimpleXMLElement($xml->asXML()); $itemsNode = $sxe->data[0]; $main = $itemsNode->addChild(inv); $sub = $main->addChild("name", $name); $sxe->asXML("invoice.xml"); } ?> The existing xml file looks like this: <?xml version="1.0" encoding="utf-8"?> <root> <data> <inv> <name>Sally Prince</name> </inv> </data> </root> And, my intention is is I fill out the form with "Bill Gates" the xml will become: <?xml version="1.0" encoding="utf-8"?> <root> <data> <inv> <name>Sally Prince</name> </inv> <inv> <name>Bill Gates</name> </inv> </data> </root> Also if I just set $name = "Bill Gates" it works.. but the form will not pass the data to the xml.. what am I missing? Thanks!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.