View Single Post

  #16 (permalink)  
Old 21-03-2008, 02:16 AM
ziycon's Avatar
ziycon ziycon is offline
Wannabe Geek
Recent Blog:
[CaRP] XML error: Invalid character at line 55
 
Join Date: Jan 2007
Location: Dublin
Posts: 416
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
ziycon will become famous soon enough
Send a message via MSN to ziycon Send a message via Skype™ to ziycon
Default

Ok Frodo, that seems to work on adding a new article, but when i edit it the same old thing is happening, below is the update page:
PHP Code:
<?php
header
("Location: ../news/1.htm");
include(
'../forum/SSI.php');

dbConnect();

global 
$context;

if(
$context['user']['is_logged'])
{
    
$validate_admin check_admin_userid($context['user']['id']);
    
$validate check_sec_admin_userid($context['user']['id'],2);
    if((
$validate == true) || ($validate_admin == true))
    {
        
$content $_REQUEST['body'];
        
$content mysql_escape_string($content);
        
mysql_query("UPDATE news SET title='".$_GET['title']."', body='".$content."'  WHERE id=".$_GET['id']."");
    }
}

closeConnect();
?>
__________________
Irish Gaming Network
Reply With Quote