View Single Post
ישן 23-01-06, 19:36   # 8
Homie
Permanently Banned
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 38
הודעות: 287

Homie לא מחובר  

ציטוט:
נכתב במקור על ידי MoonChild
שים לב ששכחת להשתמש בפונקציית mail(); שבעצם שולחת את האימייל.

הנה הקוד המתוקן :
PHP קוד:
<? 
    chdir
(".."); 
    include(
"includes/common.php"); 
    if(
$_POST['subject'] && $_POST['message']){ 
        
$sql "SELECT * FROM users"
        
$result mysql_query($sql) or die( mysql_error() ); 
        if (
$result){ 
            while( 
$row mysql_fetch_object($result) ){ 
                array( 
                    
$row->name." <".$row->email.">",  
                    
$_POST['subject'],  
                    
$_POST['message'],  
                    
mail("Recepiestmail@mail.com"$subject$message"From: $sitename <$adminemail>"); 
            } 
        } 
        echo 
"<font color=red>ההודעה נשלחה</font><br>"
    } 
?>
זה כותב לי שגיאה:

PHP קוד:
Parse errorparse errorunexpected ';'expecting ')' in /home/homie/public_html/php/mail/send_email.php on line 13 
  Reply With Quote