אשכול: שגיאת SQL
View Single Post
ישן 02-07-07, 11:36   # 1
X-T
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jan 2007
הודעות: 1,021

X-T לא מחובר  

שגיאת SQL

מציג לי שגיאת SQL בקוד הבא
PHP קוד:
if(isset($_POST['submit'])){
    
$title $_POST['title'];
    
$desc $_POST['desc'];
    
$key $_POST['key'];
        
$content stripslashes$_POST['FCKeditor1'] ) ;
        
$sql "UPDATE `pages` SET `content`='$content`, `titleme`='$title',`descme`='$desc',`keyme`='$key' WHERE id='$id'";
        @
mysql_query($sql) or die(mysql_error());
    } 
__________________
You don't shine if you don't glow
  Reply With Quote