Jump to content
  • 0

xml + php


drew
 Share

Question

Добрый день!

Посматривал тут, что можно сделать интересного с помощью xml и php, и решил быстренько попробовать набросать маленькую гостевую книгу, или что-то подобное, что бы можно было оставить коммент, да имя.

Вроде всё просто:

xml файл:


<?xml version="1.0" encoding="UTF-8"?>
<comments>
<one_com><id>1</id><name>drew</name><comment>123</comment>
</one_com
</comments>

index.php файл


<?php
$comments = @simplexml_load_file("comment.xml");
$i = 0;

foreach ($comments->one_com as $n)
{
$id[$i] = $n -> id;
$name[$i] = $n -> name;
$comment[$i] = $n->comment;
$i++;
}

?>
<html>
<head>
<title>Hello world</title>
</head>
<body bgcolor="#00BFFF">

<div align="center">
<h1></h1>
<table width="50%" border="1">
<?php
for($i = 0; $i < sizeof($id); $i++){
$z=$id[$i]+1;
echo "<tr>
<td>$id[$i]</td>
<td width=\"20%\">$name[$i] wrote</td>
<td>$comment[$i]</td>
<td><a href=\"del_comment.php?id=$id[$i]\">delete</a></td>
</tr>";
}
?>
</table>
<div style="position: relative;">
<table border="1">
<tr>
<?php
echo "<td>
Add your name <br/>and <br/>comment</td><td>
<form name=\"commentsss\" action=\"add_comment.php\" method=\"post\">
<input type=\"hidden\" name=\"id\" value=\"$z\" />
<textarea name=\"name\" cols=\"20\" rows=\"1\">new name</textarea><br/>
<textarea name=\"comment\" cols=\"50\" rows=\"2\"></textarea><br/>
<input type=\"reset\" value=\"Reset\"/>
<input type=\"submit\" name=\"opa\" value=\"Add\"/>
</form>
</td>";
?>
</tr>
</table>
</div>

</body>
</html>

del_comment.php файл:


<?php

$id = $_GET["id"];
$i = (int)$id;

$comments = simplexml_load_file("comment.xml");
unset($comments -> one_com[$i]);

$comments->asXML("comment.xml");
header("Location: index.php");

?>

и на всякий случай add_comment.php файл:


$gid = $_POST["id"];
$gname = $_POST["name"];
$gcomment = $_POST["comment"];

$comments = simplexml_load_file("comment.xml");

$newcom = $comments->addChild("one_com");
$newcom->addChild("id",$gid);
$newcom->addChild("name",$gname);
$newcom->addChild("comment",$gcomment);

$comments->asXML("comment.xml");
header("Location: index.php");

Всё делалось на скорую руку, так что код конечно оставляет желать лучшего, но зациклившись на ошибке при удалении, я пока оставил работу над всей красотой. Буду мегапризнателен, если кто подскажет или натолкнёт на мысль, где у меня ошибка!

всё пока тестится тут: тут

Edited by drew
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
<a href=\"del_comment.php?id=$id[$i]\">

значение нода id в index.php и номер в массиве one_com при удалении могут быть различными. При удалении нужно искать запись у которого нод id равен тому что передано по гет.

Link to comment
Share on other sites

  • 0
<a href=\"del_comment.php?id=$id[$i]\">

значение нода id в index.php и номер в массиве one_com при удалении могут быть различными. При удалении нужно искать запись у которого нод id равен тому что передано по гет.

Спасибо, что-то тормознул :) Теперь всё хорошо работает :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy