<?php
include ('header.php');
/**********************************************************************
* Copyright notice Ja2BU 1.1.
*
* (c) 2011 Predrag Rukavina - admin[at]phpform[dot]net
* All rights reserved
*
* This script is part of the Ja2BU project.
* The Ja2BU project is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* This copyright notice MUST appear in all copies of the script!
************************************************************************/
?>
<div id="vforms">
<div id="cconfig">Pages</div>
<?php if(isset($_POST['submit'])) {
$ccaboutus = $_POST['aboutus'];
$ccprivacy = $_POST['privacy'];
$cctherms = $_POST['therms'];
if(get_magic_quotes_gpc()) {
$ccaboutus = stripslashes($ccaboutus);
$ccprivacy = stripslashes($ccprivacy);
$cctherms = stripslashes($cctherms);
}
$sql = 'UPDATE abcoption SET valueopt = '.$conn->qstr($ccaboutus).' WHERE optionid = '.$conn->qstr("18").'';
if($conn->Execute($sql) === false) {
print '<br /><div id="error">error [3]: '.$conn->ErrorMsg().'</div><br />';
}
$sql2 = 'UPDATE abcoption SET valueopt = '.$conn->qstr($ccprivacy).' WHERE optionid = '.$conn->qstr("19").'';
if($conn->Execute($sql2) === false) {
print '<br /><div id="error">error [3]: '.$conn->ErrorMsg().'</div><br />';
}
$sql3 = 'UPDATE abcoption SET valueopt = '.$conn->qstr($cctherms).' WHERE optionid = '.$conn->qstr("20").'';
if($conn->Execute($sql3) === false) {
print '<br /><div id="error">error [3]: '.$conn->ErrorMsg().'</div><br />';
}
echo "<div id ='information'> Successfully. ";
?>
<a href="pages.php">Back to Pages.</a></div>
<?php } else { ?>
<form method="post" action="pages.php">
About Us<br /><textarea id="incc" name="aboutus"><?php echo $siteabout; ?></textarea><br /><br />
<br /><br />
Privacy<br /><textarea id="incc" name="privacy"><?php echo $siteprivacy; ?></textarea><br /><br />
<br /><br />
Terms of Use<br /><textarea id="incc" name="therms"><?php echo $siteterms; ?></textarea><br /><br />
<br /><br />
<input type="submit" class="topicbuton" name="submit" value="Submit" /><br /><br />
</form>
<?php } ?>
</div>
<?php
include ('footer.php');
$conn->Close();
/**************************************
* Revision: v.1.1.
***************************************/
?>