PHP Classes

File: update.php

Recommend this page to a friend!
  Classes of Verne Joe   XML Guestbook   update.php   Download  
File: update.php
Role: Application script
Content type: text/plain
Description: update word
Class: XML Guestbook
Create and manage guestbooks stored in XML files
Author: By
Last change:
Date: 19 years ago
Size: 429 bytes
 

Contents

Class file image Download
<?php

include('xml_class.php');
include(
'constant.php');

//creat a object og class xml_opration
$xml = new xml_opration;

$title = $xml->formatXmlString($_POST['title']);
$author = $xml->formatXmlString($_POST['author']);
$content = $xml->formatXmlString($_POST['content']);
$id = $_POST['id'];

$xml->updateXmlFile($id, $title, $author, $content);

$xml->writeXmlFile();


header("location:index.php");

?>