Good Morning
I have one doubt , i need edit xml from php
if i have the following code
$a = $xml->no [1];
i get the "no" in line 1
but i want edit the line from a variable:
Example (dont work)
$linha = $_GET['linha'];
$a = $xml->no [$linha];
How I can edit the line?
Edit xml from php
Moderator: General Moderators
Re: Edit xml from php
SimpleXML read the example 8: you have to put the path to value which you want to modify than give it a new value.