$response = [];
foreach($getrrrecord->data=>$record) {
array_push($response, [
'id' => $record->id,
'owner' => $record->owner,
'type_record' => $record->type_record,
'pri' => $record->pri,
'weight' => $record->weight,
'port' => $record->port,
'data' => $record->data
])
}
}
}
echo json_encode($response);
$.ajax({
type: "GET",
url: "https://lk.webvm.ru/billmgr?authinfo="+$login+":"+$password+"&out=xml&func=user",
dataType: "xml",
success: function(xml) {
//console.log(xml);
$email = $(xml).find('email').text();
$('#result').append('<div class="user_info">'+$email+'<div>');
}
https://lk.webvm.ru/billmgr?authinfo=olegalim@yandex.ru:P1j8G1g3&out=xml&func=user
dataType: "xml",
success: function(xml) {
xmlDoc = $.parseXML( xml ),
$xml = $(xmlDoc),
$email = $xml.find('email').text();
$('#result').append('<div class="user_info">'+$email+'<div>');
$('.bill_botton').click(function() {
ajaxPostXML();
});
function ajaxPostXML(){
$login = $('#authLogin').val();
$password = $('#authPassword').val();
$.ajax({
type: "POST",
url: "https://lk.webvm.ru/billmgr?authinfo="+$login+":"+$password+"&out=xml&func=user",
dataType: "xml",
success: function(data){
var xmlDoc = $.parseXML(data),
xml = $(xmlDoc),
xmlEmail = xml.find("email").text();
alert(xmlEmail );
},
// если произошла ошибка при получении файла
error: function () {
alert('ERROR');
}
});
}
<form class="forma" method="post">
<input id="authLogin" class="logi_input" name="login" autocomplete="off" type="text" placeholder="E-mail name" /></span></p>
<input id="authPassword" class="pas_input" name="password" autocomplete="off" type="password" placeholder="Password" />
<input class="button" type="submit" value="Вход"/>
</form>
$('.bill_botton').click(function() {
var login = $('#authLogin').val();
var password = $('#authPassword').val();
$.ajax({
type: "POST",
url: "https://lk.webvm.ru/billmgr?authinfo='"+login+"':'"+password+"'&out=xml&func=user",
dataType: "xml",
success: function( data ){
// Здесь что писать?
}
});
});});
<elem>
<self>on</self>
<default_access_allow>on</default_access_allow>
<account_id>5173</account_id>
<enabled>on</enabled>
<email>olegalim@yandex.ru</email>
<realname>Галимов Олег</realname>
<name>olegalim@yandex.ru</name>
<id>5176</id>
</elem>
<tparams>
<out>xml</out>
<func>user</func>
</tparams>
<saved_filters/>
</doc>
$('.bill_botton').click(function() {
var login = $('#authLogin').val();
var password = $('#authPassword').val();
//alert (login);
$.ajax({
type: "POST",
url: "https://lk.webvm.ru/billmgr?authinfo='"+login+"':'"+password+"'&out=xml&func=user",
dataType: "xml",
success: function( data ){
// Здесь что писать?
}
});
});});
<elem>
<self>on</self>
<default_access_allow>on</default_access_allow>
<account_id>5173</account_id>
<enabled>on</enabled>
<email>olegalim@yandex.ru</email>
<realname>Галимов Олег</realname>
<name>olegalim@yandex.ru</name>
<id>5176</id>
</elem>
<tparams>
<out>xml</out>
<func>user</func>
</tparams>
<saved_filters/>
</doc>
$(function() {
$('.delete_btn').click(function(){
var $this = $(this);
var $value = $this.attr('id');
var $item = $(this).closest("tr").find(".owner").text();
if(confirm('Вы уверены, что хотите удалить ' +($item)))
$.post("../reg/soap_action_deleterrrecord.php", {id: $value}, function(respons) {
if (respons) {
alert('удалено');
}
});
});
});
if (isset($_POST['#butt_cler']))
{
echo '<form class='forma_3' action='soap_action_deleterrrecord.php' method='post'>
<tr<td></td>
<td><input type='text' name='id' value='".$record->id."'></td>
<td>".$record->owner."</td>
<td>".$record->type_record."</td>
<td>".$record->pri."</td>
<td>".$record->weight."</td>
<td>".$record->port."</td>
<td class='td_value'>".$record->data."</td>
<td>".$record->sshfp_algorithm."</td>
<td>".$record->sshfp_type."</td>
<td>".$record->info."</td></tr>";
<input type='text' name='id' value='".$record->id."'>
<input class='button' type='submit' name='deleteRrRecord' value='Удалить запись домена'>
</form>';
}
if($_POST['login']==$login && $_POST['password']==$password)
Я проверил код php
Ошибка Syntax error, unexpected T_DOUBLE_ARROW
на строчку foreach($getrrrecord->data=>$record) {
Как это решить?