Change <? to <?php and add some formatting
This commit is contained in:
@@ -1,21 +1 @@
|
||||
<?␍
|
||||
$xmla = simplexml_load_file('../db/todoist.xml');␍
|
||||
if(isset($_POST['token'])){␍
|
||||
$token = trim($_POST['token']);␍
|
||||
␍
|
||||
$xmla->addChild("token", $token);␍
|
||||
␍
|
||||
$xmla->asXML('../db/todoist.xml');␍
|
||||
␍
|
||||
echo "ok";␍
|
||||
}else if(isset($_POST['name']) && isset($_POST['id'])){␍
|
||||
$name = trim($_POST['name']);␍
|
||||
$id = trim($_POST['id']);␍
|
||||
␍
|
||||
$xmla->addChild("name", $name);␍
|
||||
$xmla->addChild("id", $id);␍
|
||||
␍
|
||||
$xmla->asXML('../db/todoist.xml');␍
|
||||
␍
|
||||
echo "ok";␍
|
||||
}
|
||||
<?php␍␍$xmla = simplexml_load_file('../db/todoist.xml');␍␍if (isset($_POST['token'])) {␍␍ $token = trim($_POST['token']);␍ $xmla->addChild("token", $token);␍ $xmla->asXML('../db/todoist.xml');␍ echo "ok";␍␍} else if (isset($_POST['name']) && isset($_POST['id'])) {␍␍ $name = trim($_POST['name']);␍ $id = trim($_POST['id']);␍ $xmla->addChild("name", $name);␍ $xmla->addChild("id", $id);␍ $xmla->asXML('../db/todoist.xml');␍␍ echo "ok";␍␍}
|
||||
Reference in New Issue
Block a user