• 14-04-2009, 14:47:02
    #1
    Arkadaşlar normal php 4 de çalılşan kodum php 5 çalışmıyor sizce neden olabilir?

    <?PHP
    $recipient = $_POST['recipient'];
    $E-Mail = $_POST['E-Mail'];
    $subject = $_POST['subject'];
    $required = $_POST['required'];
    //$sort = $_POST['sort'];
    $env_report = $_POST['env_report'];
    $print_blank_fields = $_POST['print_blank_fields'];
    
    require("lang_turkish.php");
    define('VERSION','v1.0');
    define('CHECK_REFERER', true);
    define('MANUAL','http://www.siteadi.com.tr/okubeni.htm');
    $referers = array('www.siteadi.com.tr', 'siteadi.com.tr',);
    
    $valid_env = array('REMOTE_HOST', 'REMOTE_ADDR', 'REMOTE_USER', 'HTTP_USER_AGENT');
    
    // +------------------------------------------------------------------------+
    // | STOP EDITING! The only two variables that need to be updated are       |
    // | $referers and $valid_env                                               |
    // +------------------------------------------------------------------------+
    
    $recipients = $referers;
    $errors = $fieldname_lookup = array();
    $invis_array = array('recipient','subject','required','redirect',
                         'print_blank_fields','env_report','sort',
                         'missing_fields_redirect','title','bgcolor',
                         'text_color','link_color','alink_color',
                         'vlink_color','background','subject','title',
                         'link','css','return_link_title',
                         'return_link_url','recipient_cc','recipient_bcc',
                         'priority','redirect_values','hidden','alias',
                         'mail_newline', 'gmt_offset');
    
    /****************************************************************
     * fake_in_array() is only used in PHP3 since PHP4 has a native        *
     * in_array.  Depending on what version of PHP you are running        *
     * the script will determine what is the best function to run         *
     * --- THER IS NO LONGER ANY REASON TO DELETE THIS FUNCTION ---        *
     * Function renamed in 1.04.0                                        *
     ****************************************************************/
    
    function fake_in_array($needle, $haystack)
    {
            $found = false;
            while (list($key,$val) = each ($haystack)) {
                    if ($needle == $val)
                            $found = true;
            }
            return $found;
    }
    
    /****************************************************************
     * check_referer() breaks up the enviromental variable                *
     * HTTP_REFERER by "/" and then checks to see if the second        *
     * member of the array (from the explode) matches any of the        *
     * domains listed in the $referers array (declaired at top)        *
     ****************************************************************/
    
    function check_referer($referers)
    {
            global $errors;
            if (count($referers)) {
                    if (getenv('HTTP_REFERER')) {
                            $temp = explode('/', getenv('HTTP_REFERER'));
                            $found = false;
                            while (list(,$stored_referer) = each($referers)) {
                                    if (eregi('^' . $stored_referer . '$', $temp[2]))
                                            $found = true;
                            }
                            if (!$found) {
                                    $errors[] = '1|Yetkisiz bir domain den geliyorsunuz. Lütfen,  &quot;<a href="' . MANUAL . '#setting_up" target="_blank">FormMail Script Ayarları</a>&quot; bölümünü okuyunuz.';
                                    error_log('[PHPFormMail] Illegal Referer. (' . getenv('HTTP_REFERER') . ')', 0);
                            }
                            return $found;
                    } else {
                            $errors[] = '0|Üzgünüm, buraya hangi HTTP_REFERER ile gönderildiğiniz anlaşılamadı.  Tarayıcınız, bir HTTP_REFERER olan gönderim değildir.  Eğer Norton Firewall kullanıyorsanız (herhangi bir versiyon olabilir) lütfen, <a href="http://service1.symantec.com/SUPPORT/nip.nsf/5a5e9c8a8ac2ec3c882568f60060f23a/0181a150098795a285256910005e6f0d?OpenDocument" target="_blank">Norton destek sitesine bakınız</a>.';
                            error_log('[PHPFormMail] HTTP_REFERER not defined. Browser: ' . getenv('HTTP_USER_AGENT') . '; Client IP: ' . getenv('REMOTE_ADDR') . '; Request Method: ' . getenv('REQUEST_METHOD') . ';', 0);
                            return false;
                    }
            } else {
                    $errors[] = '1|Gönderici program tanımlanamadı. İşleminiz reddedilecektir.  Lütfen, &quot;<a href="' . MANUAL . '#setting_up" target="_blank">FormMail Script Ayarları</a>&quot;bölümünü okuyunuz.';
                    error_log('[PHPFormMail] Gönderici program tanımlanmadı. İşleminiz reddedildi.', 0);
                    return false;
            }
    }
    
    /****************************************************************
     * check_recipients() alıcılar e-mail adresleri bölümü        *
     * ve geçerli domainler kontrolü        *
     * Function added in 1.3.1                                        *
     ****************************************************************/
    
    function check_recipients($valid_recipients, $recipient_list)
    {
            global $errors;
            $recipients_ok = true;
            $recipient_list = explode(',', $recipient_list);
            while (list(,$recipient) = each($recipient_list)) {
                    $recipient_domain = false;
                    $recipient = trim($recipient);
                    reset($valid_recipients);
                    while ((list(,$stored_domain) = each($valid_recipients)) && ($recipient_domain == false)) {
                            if (eregi('^[_\.a-z0-9-]*@' . $stored_domain . '$', $recipient))
                                    $recipient_domain = true;
                    }
                    if ($recipient_domain == false) {
                            $recipients_ok = false;
                            error_log('[PHPFormMail] Illegal Recipient: ' . $recipient . ' from ' . getenv('HTTP_REFERER'), 0);
                    }
            }
            if (!$recipients_ok)
                    $errors[] = '1|İzin verilen alıcılar listesinde yer almayan bir domaine mail göndermeyi deniyorsunuz. Lütfen, &quot;<a href="' . MANUAL . '#setting_up" target="_blank"> FormMail Script Ayarları</a>&quot; bölümünü okuyunuz.';
            return $recipients_ok;
    }
    
    /****************************************************************
     * decode_vars() is used to assign all of the variables passed        *
     * into the form to a generic variable.  Allthough there are        *
     * two official form actions, POST and GET, I decided to use        *
     * this variable method so if more actions are invented, I        *
     * wouldn't have to change anything.                                *
     *                                                                *
     * In the first line, the request methood is assigned to        *
     * $request with HTTP_ and _VARS appended to it.                *
     * In the second line uses PHPs variable variable.                *
     * It's basically addressing the variable $HTTP_POST_VARS or        *
     * $HTTP_GET_VARS and returning that.  Read more about                *
     * variable variables in the PHP documentation.                        *
     ****************************************************************/
    
    function decode_vars()
    {
            if (isset($_REQUEST))
                    $request = '_' . getenv('REQUEST_METHOD');
            else
                    $request = 'HTTP_' . getenv('REQUEST_METHOD') . '_VARS';
            global $$request;
            if (count($$request) > 0) {
                    while (list($key, $val) = each($$request)) {
                            if (is_array($val))
                                    $val = implode(', ',$val);
                            $output[$key] = stripslashes($val);
                    }
                    return $output;
            } else
                    return array();
    }
    
    
    /****************************************************************
     * error() is our generic error function.                        *
     * When called, it checks for errors in the $errors array and        *
     * depending on $form["missing_fields_redirect"] will either        *
     * print out the errors by calling the function output_html()        *
     * or it will redirect to the location specified in                *
     * $form["missing_fields_redirect"].                                *
     ****************************************************************/
    
    function error()
    {
            global $form, $natural_form, $errors;
            if (isset($form['missing_fields_redirect'])) {
                    if (isset($form['redirect_values']))
                            header('Location: ' . $form['missing_fields_redirect'] . '?' . getenv('QUERY_STRING') . "\r\n");
                    else
                            header('Location: ' . $form['missing_fields_redirect'] . "\r\n");
            } else {
                    if(!isset($form['title']))
                            $form['title'] = 'PHPFormMail - Hata Oluştu';
                    $output = "<div class=\"title\">" .ERRO. "</div>\n<ul>\n";
                    $crit_error = 0;
                    while (list(,$val) = each ($errors)) {
                            list($crit,$message) = explode('|',$val);
                            $output .= '  <li>' . $message . "</li>\n";
                            if ($crit == 1)
                                    $crit_error = 1;
                    }
                    $output .= "</ul>\n";
                    if ($crit_error == 1)
                            $output .=  "<div class=\"crit\">FormMail, site yöneticisi tarafından ayarlanması gereken hataları gördü. Bu sorunlar çözülünceye kadar e-posta gönderilmeyecektir. Sorunlar çözüldüğü andan itibaren e-posta gönderebilmeniz için formu tekrar doldurmalısınız. </div><div class=\"returnlink\">" .RETUR. " <a href=\"javascript: history.back();\">" .CLICK. "</a></div>\n";
                    else
                            $output .=  "<div class=\"returnlink\">" .PLEASE. ", <a href=\"javascript: history.back();\">" .BACK. "</a> " .BACKFIELD. "</div>\n";
                    output_html($output);
            }
    }
    
    /****************************************************************
     * check_required() is the function that checks all required        *
     * fields to see if they are empty or match the provided regex        *
     * string (regex checking added in 1.02.0).                        *
     *                                                                *
     * Should a required variable be empty or not match the regex        *
     * pattern, a error will be added to the global $errors array.        *
     ****************************************************************/
    
    function check_required()
    {
            global $form, $errors, $invis_array, $fieldname_lookup;
            $problem = true;
            if ((!isset($form['recipient'])) && (!isset($form['recipient_bcc']))) {
                    $problem = false;
                    $errors[] = '1|There is no recipient to send this mail to.  Please read the manual section titled &quot;<a href="' . MANUAL . '#recipient" target="_blank">Form Configuration - Recipient</a>&quot;.';
                    error_log('[PHPFormMail] There is no recipient defined from ' . getenv('HTTP_REFERER'), 0);
            }
            if (isset($form['required'])) {
                    $required = split(',', $form['required']);
                    while (list(,$val) = each($required)) {
                            $val = trim($val);
                            $regex_field_name = $val . '_regex';
                            if ((!isset($form[$val])) || (isset($form[$val]) && (strlen($form[$val]) < 1))) {
                                    $problem = false;
                                    if (isset($fieldname_lookup[$val]))
                                            $field = $fieldname_lookup[$val];
                                    else
                                            $field = $val;
                                    $errors[] = '0|(<b>' . $field . '</b>) ' .ERRORFIELD. ' ';
                            } else if (isset($form[$regex_field_name])) {
                                    if (!eregi($form[$regex_field_name],$form[$val])) {
                                            $problem = false;
                                            $errors[] = '0|' .FALSEFIELD1. ' (<b>' . $fieldname_lookup[$val] . '</b>) ' .FALSEFIELD2. '';
                                    }
                                    $invis_array[] = $regex_field_name;
                            }
                    }
            }
            return $problem;
    }
    
    
    /****************************************************************
     * sort_fields() is responsable for sorting all fields in $form        *
     * depending $form["sort"].                                        *
     * There are three main sort methods: alphabetic, reverse        *
     * alphabetic, and user supplied.                                *
     *                                                                *
     * The user supplied method is formatted "order:name,email,etc".*
     * The text "order" is required and the fields are comma        *
     * sepperated. ("order" is legacy from the PERL version.) If        *
     * the user supplied method leaves fields out of the comma        *
     * sepperated list, the remaining fields will be appended to        *
     * the end of the orderd list in the order they appear in the        *
     * form.                                                        *
     * Function added in 1.02.0                                        *
     ****************************************************************/
    
    function sort_fields()
    {
            global $form;
            switch ($form["sort"]) {
                    case 'alphabetic':
                    case 'alpha':                ksort($form);
                                            break;
                    case 'ralphabetic':
                    case 'ralpha':                krsort($form);
                                            break;
                    default:                if ($col = strpos($form['sort'],':')) {
                                                    $form['sort'] = substr($form['sort'],($col + 1));
                                                    $temp_sort_arr = explode(',', $form['sort']);
                                                    for($x = 0; $x < count($temp_sort_arr); $x++) {
                                                            $out[$temp_sort_arr[$x]] = $form[$temp_sort_arr[$x]];
                                                            unset($form[$temp_sort_arr[$x]]);
                                                    }
                                                    $form = array_merge($out,$form);
                                            }
            }
            return true;
    }
    
    
    /****************************************************************
     * alias_fields() creates a lookup array so we can use Aliases        *
     * for the field names.         If a alias is not available, the        *
     * lookup array is filled with the form field's name                *
     * Function added in 1.05.0                                        *
     ****************************************************************/
    
    function alias_fields()
    {
            global $form, $fieldname_lookup;
            while (list($key,) = each($form)) {
                    $fieldname_lookup[$key] = $key;
            }
            reset($form);
            if (isset($form['alias'])) {
                    $aliases = explode(',', $form['alias']);
                    while (list(,$val) = each($aliases)) {
                            $temp = explode('=', $val);
                            $fieldname_lookup[trim($temp[0])] = trim($temp[1]);
                    }
            }
            return true;
    }
    
    
    /****************************************************************
     * send_mail() the function that parses the data into SMTP        *
     * format and sends the e-mail.                                        *
     ****************************************************************/
    
    function send_mail()
    {
            global $form, $invis_array, $valid_env, $in_array_func, $errors;
    
            switch ($form['mail_newline']) {
                    case 2:                $mail_newline = "\r";
                                    break;
                    case 3:                $mail_newline = "\r\n";
                                    break;
                    default:        $mail_newline = "\n";
            }
    
            if (isset($form['gmt_offset']) && ereg('^(\\-|\\+)?([0-9]{1}|(1{1}[0-2]{1}))$', $form['gmt_offset'])) {
                    $mkseconds = mktime(gmdate('H') + $form['gmt_offset']);
                    $mail_date = gmdate('d-m-Y', $mkseconds) . ' saat: ' . gmdate('H:i:s', $mkseconds) . ' (GMT ' . $form['gmt_offset'] . ').';
            } else
                    $mail_date = date('d-m-Y') . ' saat: ' . date('H:i:s.');
    
            if (isset($form['realname']))
                    $realname = $form['realname'];
            elseif (isset($form['firstname']) || isset($form['lastname']))
                    $realname = trim($form['firstname'] . ' ' . $form['lastname']);
    
            $mailbody = ' '.MAILBODY. ' ' . $mail_newline;
            if (isset($realname))
                    $mailbody.= $realname . ' (' . $form['E-Mail'] . ') - Tarih: ' . $mail_date . $mail_newline . $mail_newline;
            else
                    $mailbody.= $form['E-Mail'] . ' - Tarih: ' . $mail_date . $mail_newline . $mail_newline;
    
            reset($form);
            while (list($key,$val) = each($form)) {
                    if ((!$in_array_func($key,$invis_array)) && ((isset($form['print_blank_fields'])) || ($val)))
                                    $mailbody .= $key . ': ' . $val . $mail_newline;
            }
    
            if (isset($form['env_report'])) {
                    $temp_env_report = explode(',', $form['env_report']);
                    $mailbody .= $mail_newline . $mail_newline . "-------- ".ENVREPO." --------" . $mail_newline;
                    while (list(,$val) = each($temp_env_report)) {
                            if ($in_array_func($val,$valid_env))
                                    $mailbody .= $val . ': ' . getenv($val) . $mail_newline;
                    }
            }
    
            if (!isset($form['recipient']))
                    $form['recipient'] = '';
    
            // Append lines to $mail_header that you wish to be
            // added to the headers of the e-mail. (SMTP Format
            // with newline char ending each line)
    
            $mail_header = 'From: ' . $form['E-Mail'];
            if (isset($realname))
                    $mail_header .= ' (' . $realname . ')';
            $mail_header .= $mail_newline;
            if (isset($form['recipient_cc']))
                    $mail_header .= 'Cc: ' . $form["recipient_cc"] . $mail_newline;
            if (isset($form['recipient_bcc']))
                    $mail_header .= 'Bcc: ' . $form['recipient_bcc'] . $mail_newline;
            if (isset($form['priority']))
                    $mail_header .= 'X-Priority: ' . $form['priority'] . $mail_newline;
            else
                    $mail_header .= "X-Priority: 3" . $mail_newline;
            $mail_header .= 'X-Mailer: FormMail ' . VERSION . " (".SITEURL.")" . $mail_newline;
    
            $mail_status = mail($form['recipient'], $form['subject'], $mailbody, $mail_header);
            if (!$mail_status) {
                     $errors[] = '1|Message could not be sent due to an error while trying to send the mail.';
                     error_log('[PHPFormMail] Mail could not be sent due to an error while trying to send the mail.');
            }
            return $mail_status;
    }
    
    
    /****************************************************************
     * output_html() is used to output all HTML to the browser.        *
     * This function is called if there is an error or for the        *
     * "Thank You" page if neither are declaired as redirects.        *
     *                                                                *
     * While called output_html() it actually outputs valid XHTML        *
     * 1.0 documents.                                                *
     * Function added in 1.02.0                                        *
     ****************************************************************/
    
    function output_html($body)
    {
            global $form;
            print "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
            print "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"tr-TR\">\n";
            print "<head>\n";
            print "  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1254\" />\n";
            print "  <meta name=\"robots\" content=\"noindex,nofollow\" />\n";
            print "  <title>" . $form["title"] . "</title>\n";
            print "  <style type=\"text/css\">\n";
            print "    BODY {" . $form['bgcolor'] . ' ' . $form['text_color'] . "}\n";
            if (isset($form['link_color']))
                    print "    A {" . $form['link_color'] . "}\n";
            if (isset($form['alink_color']))
                    print "    A:active {" . $form['alink_color'] . "}\n";
            if (isset($form['vlink_color']))
                    print "    A:visited {" . $form['vlink_color'] . "}\n";
            print "  </style>\n";
            if (isset($form['css']))
                    print "  <link rel=\"stylesheet\" href=\"" . $form['css'] . "\">\n";
            print "</head>\n\n";
            print "<body>\n";
            print "<!-- FormMail " . VERSION . "  -->\n";
            print $body;
            print "<br>\n";
            print "</body>\n";
            print "</html>";
    }
    
    
    $form = decode_vars();
    
    if (count($form) > 0) {
    
            $form['bgcolor']        = isset($form['bgcolor']) ? ('background-color: ' . $form['bgcolor'] . ';') : ('background-color: #FFF;');
            $form['text_color']        = isset($form['text_color']) ? ('color: ' . $form['text_color'] . ';') : ('color: #000;');
            $form['link_color']        = isset($form['link_color']) ? ('color: ' . $form['link_color'] . ';') : NULL;
            $form['alink_color']        = isset($form['alink_color']) ? ('color: ' . $form['alink_color'] . ';') : NULL;
            $form['vlink_color']        = isset($form['vlink_color']) ? ('color: ' . $form['vlink_color'] . ';') : NULL;
    
            // PFMA remove if block
            // Determine (based on the PHP version) if we should use the native
            // PHP4 in_array or the coded fake_in_array
    
            if (phpversion() >= '4.0.0')
                    $in_array_func = 'in_array';
            else
                    $in_array_func = 'fake_in_array';
    
            alias_fields();
            if(CHECK_REFERER == true)
                    check_referer($referers);
            else
                    error_log('[PHPFormMail] HTTP_REFERER checking is turned off.  Referer: ' . getenv('HTTP_REFERER') . '; Client IP: ' . getenv('REMOTE_ADDR') . ';', 0);
            if (isset($form['recipient']))
                    check_recipients($recipients, $form['recipient']);
            if (isset($form['recipient_cc']))
                    check_recipients($recipients, $form['recipient_cc']);
            if (isset($form['recipient_bcc']))
                    check_recipients($recipients, $form['recipient_bcc']);
            check_required();
    
            if (!$errors) {
                    if (!isset($form['subject']))
                            $form['subject'] = '' . SUBJECT . '';
                    if (!isset($form['E-Mail']))
                            $form['E-Mail'] = '';
                    if (!isset($form['mail_newline']))
                            $form['mail_newline'] = 1;
    
                    if (isset($form['sort']))
                            sort_fields();
    
                    if (isset($form['hidden'])) {
                            // PFMA REMOVE 1
                            $form['hidden'] = str_replace(' ', '', $form['hidden']);
                            $form['hidden'] = explode(',', $form['hidden']);
                            // PFMA ADD $form['hidden'] = array_map('trim', $form['hidden']);
                    }
    
                    if (send_mail()) {
                            if (isset($form['redirect'])) {
                                    if (isset($form['redirect_values']))
                                            header('Location: ' . $form['redirect'] . '?' . getenv('QUERY_STRING') . "\r\n");
                                    else
                                            header('Location: ' . $form['redirect'] . "\r\n");
                            } else {
                                    if (!isset($form['title']))
                                            $form['title'] = '' .RESULTS. '';
                                    $output = "<div class=\"title\"> ".SUBMITTED." </div>\n";
                                    reset($form);
    echo "Mesajiniz gönderildi.Otomatik olarak Yonlendiriliyorsunuz.Luften Bekleyiniz.<br><b>En Yakin Zamanda Size Geri Dönüs Yapilacaktir</b>"; 
    echo '<center><meta http-equiv="Refresh" content="10; URL=index.php"><br>
    <font size=2 face=Verdana>Otomatik Yonlenmez Ise <a href="index.php">Tiklayin</a></font> </center>';                                
                                    while (list($key,$val) = each($form)) {
                                            if ((!$in_array_func($key,$invis_array)) && ((isset($form['print_blank_fields'])) || ($val)))
                                                    if ((isset($form['hidden'])) && ($in_array_func($key,$form['hidden'])))
                                                            $output .= '<div class="field"><b>' . htmlspecialchars($fieldname_lookup[$key]) . ":</b> <i>(hidden)</i></div>\n";
                                                    else
                                                            $output .= '<div class="field"><b>' . htmlspecialchars($fieldname_lookup[$key]) . ':</b> ' . htmlspecialchars($val) . "</div>\n";
                                    }
                                    if (isset($form['return_link_url']) && isset($form['return_link_title']))
                                            $output .= '<div class="returnlink"><a href="' . $form["return_link_url"] . '">'. $form["return_link_title"] . "</a></div>\n";
                                    output_html($output);
                            }
                    }
            }
    } else {
            $errors[] = '0|Form ile hiç bir şey gönderilmedi. (POST yada GET metodu ile gönderilecek veri bulunamadı.)  Bu işlemde hiç bir yöntem yoktur.';
            error_log('[PHPFormMail] POST yada GET metodu ile gönderilecek veri bulunamadı. (' . getenv('HTTP_REFERER') . ')', 0);
    }
    
    if (count($errors) > 0)
            error();
    ?>
  • 14-04-2009, 15:13:17
    #2
    Üyeliği durduruldu
    kodlar baya bir uzun. calismayip ne yapiyor. normalde ne yapması gerekiyor. konuyu biraz daha açık yazabilirmisiniz
  • 14-04-2009, 15:27:41
    #3
    normalde gelen bilgilere göre mail göndermesi gerekiyor.
    php 4 iken çalışıyordu. php 5 geçtigimde ise boş ekran cıkıyor.
    %90 php ile kaldırılan bir koddan kaynaklı veya yazma tipinden ama hangisi oldugunu bulamadım
  • 14-04-2009, 15:33:05
    #4
    Üyeliği durduruldu
    nurettin adlı üyeden alıntı: mesajı görüntüle
    normalde gelen bilgilere göre mail göndermesi gerekiyor.
    php 4 iken çalışıyordu. php 5 geçtigimde ise boş ekran cıkıyor.
    %90 php ile kaldırılan bir koddan kaynaklı veya yazma tipinden ama hangisi oldugunu bulamadım
    boş ekran aliyorsaniz bir içeriği phpinfo olan dosya atip hata gösterim açık mı kapali mi onu incelemenizi tavsiye ederim.

    hata oluşuyor ama hata gösterimi kapali olduğu için hatalar görünmüyorda olabilir

    <?php
    phpinfo();
    ?>
  • 14-04-2009, 15:49:09
    #5
    $E-Mail = $_POST['E-Mail'];

    bana php nin verdiği hata bu satırda gibi geldi. " - " olayından dolayı


    $E-Mail kısmını $E_Mail yapmanız (eğerki gerekiyorsa formda vs.. de) gerekmektedir.
  • 14-04-2009, 16:01:05
    #6
    Üyeliği durduruldu
    hata mesajı bu

    Parse error: parse error, unexpected '=' in xxx.php on line 3

    $E-Mail adlı değişkenden kaynaklanıyor. ingilizcesi "A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores."
  • 14-04-2009, 16:03:23
    #7
    $E-Mail yerine

    $E_Mail

    kullan
  • 14-04-2009, 16:38:39
    #8
    Üyeliği durduruldu
    problemin kaynagi register global in on olmasi olabilir.

    mekanizma geregi $_POST["E-Mail"] dönüştürülüp $E-Mail değişkeni oluşturulmaya calisiyordur ama böyle bir değişken adi uygun olmadigi çin hata veriyordur.
  • 14-04-2009, 17:05:45
    #9
    başına ini_set('display_errors',1); yazın hataları göstersin