С Новым годом! Форум программистов, компьютерный форум, киберфорум
PHP для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.67/9: Рейтинг темы: голосов - 9, средняя оценка - 4.67
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
1

Неверный вывод в кодировке UTF-8 без BOM

22.01.2017, 18:33. Показов 1781. Ответов 14
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Здравствуйте. У меня проблема с кодировкой. Если я сделаю кодировку в utf-8, так тогда выскакивает ошибка на моем сайте и ругается на мой php скрипт. Вот что там написано - Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at Z:\home\localhost\www\Tests\Projektas2\index.php:1) in Z:\home\localhost\www\Tests\Projektas2\db.php on line 7. Но если я поменяю кодировку на ANSI, так ошибку не выдаёт. но тогда русские буквы становятся кириллицей ! Что делать ? Может я плохо код написал ?
0
cpp_developer
Эксперт
20123 / 5690 / 1417
Регистрация: 09.04.2010
Сообщений: 22,546
Блог
22.01.2017, 18:33
Ответы с готовыми решениями:

UTF-8 без BOM = Иероглифы
Доброго времени суток! Переехал на новый сервер, и почему то всё сохраненное в "UTF-8 без BOM"...

Кодировка UTF-8 без BOM
Никак не получаєтся сохранить php файл в колировке UTF-8. Тоисть если я сохраняю без BOM то...

UTF-8 без BOM. Как вернуть русский текст?
Всем добрый день. преобразовал страницу в utf-8 без BOM. И в php дизайнере в настройках указал...

При перекодировании в UTF-8 без BOM ломается русский шрифт
Помогите, пожалуйста! Файл набран вручную (без копипаст), и изначально сохранен в UTF-8 без BOM....

14
Эксперт PHP
4925 / 3920 / 1620
Регистрация: 24.04.2014
Сообщений: 11,441
22.01.2017, 18:35 2
Кодировка нужна UTF-8 БЕЗ BOM
0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
22.01.2017, 18:39  [ТС] 3
Не, всё ровно кириллица на русский язык есть.
0
magirus
22.01.2017, 18:49
  #4

Не по теме:

жуть какой.

0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
22.01.2017, 19:05  [ТС] 5
Ну во общем я посмотрел это ошибка ( Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at Z:\home\localhost\www\Tests\Projektas2\index.php:1) in Z:\home\localhost\www\Tests\Projektas2\db.php on line 7 ) из-за сесия кажется. Ну я во общем лучше вам код скину а, вы посмотрите что там не так.

index.php

PHP/HTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php   
require "db.php";
 
$data = $_POST;
if( isset($data['do_login']))
{
    $errors = array();
    $user = R::findOne('users', 'login = ?', array($data['login']));
    if( $user )
    {
        // логин существует
        if ( md5($data['password']) == $user->password) {
            // всё хорошо, логиним пользователя
            $_SESSION['logged_user'] = $user;
            header("Location: index.php");
        } else
        {
            $errors[] = 'пороль не верен!';
        }
    } else
    {
        $errors[] = 'Vartotojas su tokiu prisijungimo vardu neaptiktas!';
    }
    
    if( ! empty($errors))
    {
        echo '<div style="color: red;">'.array_shift($errors).'</div><hr>';
    }
}
 
?>
 
<?php if( isset($_SESSION['logged_user'])) : ?>
    Prijungtas!<br>
    Sveiki, <?php echo $_SESSION['logged_user']->login; ?>!
    <hr>
    <a href="logout.php">Atsijungti</a>
    <?php else : ?>
<a href="index.php"></a><br>
<?php endif; ?>
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//En"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8/>
    <meta name="author" content="Sang Nguyen" />
    <meta name="description" content="[insert description here]" />
    <meta name="robots" content="all" />
    <title>Web pradedantiesiams</title>
    <script type="text/javascript"></script>
     <link rel="stylesheet" type="text/css" href="pav/style.css">
    
    
</head>
 
<body  onload="lous.l.focus()">
 
<div id="container">
    <div id="header">
        <div id="pageHeader">
        
        
        
        <img src="pav/logo.png" id="logo">
    
            <h1 id="nams" style="color:#fff">Web Programavimas</h1>
            
            <h2>&nbsp;</h2>
            
            <div id="tabs11">
                <ul>
                    <li><a href="#" title="Pagrindinis" class="currentTab"><span>Pagrindinis</span></a></li>
                    <li><a href="#" title="Galerija"><span>Galerija</span></a></li>
                    <li><a href="#" title="Kontaktai"><span>Kontaktai</span></a></li>
                    <li><a href="#" title="Onlie Chat"><span>Online Chat</span></a></li>
                    <li><a href="mailto:193robi.new@gmail.com"><span>Parasykite mums</span></li></a>
            <div id="Online">   Aktyvus vartotojai: ~COLUS~<br><div id="probel"></div>
Uzregistruoti vartotojai: ~REGUS~</div>
 
                </ul>
            </div>
        </div>
 
    </div> <!-- ends intro div -->
 
    <div id="content">
        <div class="contentbox">
            <h3>Kas yra Web?</h3>
            <p>This is my first submission to Ex-designz web template. I've been surfing Ex-designz web template for quite some time, and I thought I should give back to the community. This design is loosely based on my own (<a href="http://nerdnirvana.org/">http://nerdnirvana.org/</a>).</p>
            <p>There are image alignment classes if you want to align your images; just check out the CSS file.</p>
            <p>If you want the PSD to the banner, you can get it here: <a href="http://nerdnirvana.org/oswd/banner.psd">http://nerdnirvana.org/oswd/banner.psd</a>. The font file that the PSD uses can be found here: <a href="http://nerdnirvana.org/oswd/Backslash.ttf">http://nerdnirvana.org/oswd/Backslash.ttf</a>.</p>
            <p>You can freely use this for whatever as long as you include my name and link at the bottom.</p>
            <small>+<a href="http://nerdnirvana.org/">snguyen</a>; January 6th, 2006 at 15:43:42 <a href="#"><img src="pav/comment.gif" alt="comment" title="comment on this post" /></a> <a href="#">0 Comments »</a></small>
        </div>
 
        <div class="contentbox">
            <h3>Pagrindines komandos</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce fermentum dolor nec lorem. Integer elit magna, blandit eu, molestie non, mollis in, mi. Duis adipiscing. Ut porta justo eget purus. Donec condimentum. Praesent pulvinar, dui egestas hendrerit elementum, nunc odio congue dui, id venenatis justo dolor sagittis metus. Integer est. Aliquam aliquam suscipit felis. Nunc non pede viverra magna tincidunt convallis. Cras vulputate tincidunt dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc ligula est, congue in, commodo porttitor, accumsan quis, libero.</p>
 
<p>Mauris blandit dapibus est. In hac habitasse platea dictumst. Fusce dolor. Etiam in erat a orci posuere pretium. Integer urna. Sed tempus. Curabitur rutrum. Aliquam pellentesque, enim sodales pulvinar volutpat, turpis eros lobortis diam, a consequat eros turpis in nibh. Nunc venenatis egestas eros. Praesent vitae odio placerat lacus auctor elementum. Mauris tincidunt tincidunt dolor. Duis mollis lacus eu augue. Integer commodo varius elit.
</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam magna. Sed quam mi, facilisis in, adipiscing eu, convallis at, turpis. Nam pulvinar. Sed id libero. Duis ultrices imperdiet sapien. Cras pretium erat et urna. Vestibulum eu mauris. Suspendisse sed nisi. Vivamus nunc. Vestibulum ut felis. Proin justo mi, laoreet eu, mattis ac, lobortis et, purus.</p>
 
<p>Sed eget justo ac libero adipiscing pulvinar. In hac habitasse platea dictumst. Nam accumsan, nisl malesuada porttitor iaculis, dui risus mattis enim, in luctus erat enim vel orci. Mauris nibh arcu, gravida vel, vulputate eget, scelerisque vel, risus. In hac habitasse platea dictumst. Sed sit amet metus. Nam bibendum, felis non porta lacinia, tellus purus suscipit velit, in sollicitudin velit tortor non augue. Pellentesque dignissim tellus viverra ipsum. Maecenas elementum arcu id est. Ut ornare lobortis quam.</p>
 
<p>Donec elementum. Donec nec nibh. Nam eget dui eget dui tincidunt varius. Suspendisse posuere, pede sodales placerat suscipit, lacus massa posuere augue, vitae luctus eros elit id lacus. Morbi nisi ante, tempor ut, volutpat at, vestibulum at, nunc. In interdum dolor eu massa. Mauris bibendum magna vel ante. Suspendisse fringilla luctus nunc. Suspendisse potenti. In a diam sodales mi luctus pretium.</p>
 
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
    
 
 
        <div id="footer">
             
     Programmed by <a href="#">&nbsp;****&nbsp; ****</a> &nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; Designed by <a href="#">&nbsp;*****&nbsp; *****</a>
        </div>
    </div> <!-- ends supportingtext div -->
 
    
    <div id="linkList">
    <!--    <div id="linkList2">
            <div class="thelinks"> -->
                <form action="" id="login" method="post">               
    <fieldset id="inputs">
    
    <div id="In">Log In</div><img id="swirl" src="pav/swirl.gif" alt=""></img><img id="swirl2" src="pav/swirl2.gif" alt=""></img>
    <div id="div2"></div>
 
        <strong>Vartotojo Vardas</strong>:
    <input type="text" name="login" value="<?php echo @$data['login']; ?>">
        
        
        
            <div id="tarpas">
        <strong>Slaptazodis</strong>:
    <input type="password" name="password" value="<?php echo @$data['password']; ?>">
    <div id="tarpas2">
        <button type="submit" name="do_login" class="but">Ieiti</button>
        <input name="save" type="checkbox" value='1'> Prisiminti mane
    </fieldset>
    <fieldset id="actions">
        
        <a href="server/reminder.php">Forgot your password?</a><br><br><a href="signup.php">Registracija</a>
    </fieldset>
</form>
            </div>
 
            
    </div>
 
 
</div>
 
</body></html>


db.php

PHP
1
2
3
4
5
6
7
8
<?php 
 
require "libs/rb.php";
R::setup( 'mysql:host=localhost;dbname=pr2',
        'root', '' );
        
        session_start();
        ?>


logout.php

PHP
1
2
3
4
5
<?php
    require "db.php";
    unset($_SESSION['logged_user']);
    header('Location: index.php');
?>


signup.php

PHP/HTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
require "db.php";
 
$data = $_POST;
if( isset($data['do_signup']))
{
    // здесь регистрируем
    
    $errors = array();
    if( trim($data['login']) == '' )
    {
        $errors[] = 'Iveskite vartotojo varda!';
    }
 
    if( trim($data['email']) == '' )
    {
        $errors[] = 'Iveskite El.Pasto Adresa!';
    }
 
    if( ($data['password']) == '' )
    {
        $errors[] = 'Iveskite Slaptazodi!';
    }
    
    if( $data['password_2'] != $data['password'] )
    {
        $errors[] = 'Pakartotinis slaptazodis, ivestas neteisingai!';
    }
    
    if(R::count('users', "Login = ?", array($data['login'])) > 0 )
    {
        $errors[] = 'Vartotojas su tokiu vardu jau uzregistruotas';
    }
    
    if(R::count('users', "email = ?", array($data['email'])) > 0 )
    {
        $errors[] = 'Vartotojas su tokiu El.Pastu jau uzregistruotas';
    }
    if( empty($errors) )
    {
        // всё хорошо, регистрируем
        $user = R::dispense('users');
        $user->login = $data['login'];
        $user->email = $data['email'];
        $user->password = md5($data['password']);
        R::store($user);
        echo '<div style="color: green;"> Jus sekmingai uzsiregistravote!</div>';
        echo '<div style="color: green;">Galite pereiti i <a href="index.php">Pagrindini</a> puslapi arba <a href="login.php">Prisijungti</a></div><hr>';
        
    }else
    {
        echo '<div style="color: red;">'.array_shift($errors).'</div><hr>';
    }
    
}
 
?>
 
<form action="signup.php" method="POST">
 
<p>
    <p><strong>Vartotojo Vardas</strong>:</p>
    <input type="text" name="login" value="<?php echo @$data['login']; ?>">
</p>    
 
<p>
    <p><strong>El.Pasto Adresas</strong>:</p>
    <input type="email" name="email" value="<?php echo @$data['email']; ?>">
</p>    
 
<p>
    <p><strong>Slaptazodis</strong>:</p>
    <input type="password" name="password" value="<?php echo @$data['password']; ?>">
</p>    
 
<p>
    <p><strong>Pakartokite Slaptazodi</strong>:</p>
    <input type="password" name="password_2" value="<?php echo @$data['password_2']; ?>">
</p>    
 
<p>
    <button type="submit" name="do_signup">Uzsiregistruoti</button>
</p>
 
</form>


Добавлено через 5 минут
PS: Вот мне странно, почему это ошибка появляется когда кодировку сделать на Utf-8 ?? А на ANSI или utf-8 без BOM так там не выдаёт ошибку, но зато русский шрифт портится.
0
Эксперт PHP
4925 / 3920 / 1620
Регистрация: 24.04.2014
Сообщений: 11,441
22.01.2017, 22:25 6
В начало скрипта добавить
PHP
1
header('Content-Type: text/html; charset=utf-8');
или в .htaccess
Код
AddDefaultCharset utf-8
PS в index.php 47 строка не закрыты кавычки
0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
23.01.2017, 01:39  [ТС] 7
Не помогло. Опять что-то не так с session_start. Вот ошибка, если надо - (
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at Z:\home\localhost\www\Tests\Projektas2\db.php:2) in Z:\home\localhost\www\Tests\Projektas2\db.php on line 8)

PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
header('Content-Type: text/html; charset=utf-8');
?>
<?php   
require "db.php";
 
$data = $_POST;
if( isset($data['do_login']))
{
    $errors = array();
    $user = R::findOne('users', 'login = ?', array($data['login']));
    if( $user )
    {
        // логин существует
        if ( md5($data['password']) == $user->password) {
            // всё хорошо, логиним пользователя
            $_SESSION['logged_user'] = $user;
            header("Location: index.php");
        } else
        {
            $errors[] = 'пороль не верен!';
        }
    } else
    {
        $errors[] = 'Vartotojas su tokiu prisijungimo vardu neaptiktas!';
    }
    
    if( ! empty($errors))
    {
        echo '<div style="color: red;">'.array_shift($errors).'</div><hr>';
    }
}
 
?>
 
<?php if( isset($_SESSION['logged_user'])) : ?>
    Prijungtas!<br>
    Sveiki, <?php echo $_SESSION['logged_user']->login; ?>!
    <hr>
    <a href="logout.php">Atsijungti</a>
    <?php else : ?>
<a href="index.php"></a><br>
<?php endif; ?>
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//En"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8/>
    <meta name="author" content="Sang Nguyen" />
    <meta name="description" content="[insert description here]" />
    <meta name="robots" content="all" />
    <title>Web pradedantiesiams</title>
    <script type="text/javascript"></script>
     <link rel="stylesheet" type="text/css" href="pav/style.css">
    
    
</head>
 
<body  onload="lous.l.focus()">
 
<div id="container">
    <div id="header">
        <div id="pageHeader">
        
        
        
        <img src="pav/logo.png" id="logo">
    
            <h1 id="nams" style="color:#fff">Web Programavimas</h1>
            
            <h2>&nbsp;</h2>
            
            <div id="tabs11">
                <ul>
                    <li><a href="#" title="Pagrindinis" class="currentTab"><span>Pagrindinis</span></a></li>
                    <li><a href="#" title="Galerija"><span>Galerija</span></a></li>
                    <li><a href="#" title="Kontaktai"><span>Kontaktai</span></a></li>
                    <li><a href="#" title="Onlie Chat"><span>Online Chat</span></a></li>
                    <li><a href="mailto:193robi.new@gmail.com"><span>Parasykite mums</span></li></a>
            <div id="Online">   Aktyvus vartotojai: ~COLUS~<br><div id="probel"></div>
Uzregistruoti vartotojai: ~REGUS~</div>
 
                </ul>
            </div>
        </div>
 
    </div> <!-- ends intro div -->
 
    <div id="content">
        <div class="contentbox">
            <h3>Kas yra Web?</h3>
            <p>This is my first submission to Ex-designz web template. I've been surfing Ex-designz web template for quite some time, and I thought I should give back to the community. This design is loosely based on my own (<a href="http://nerdnirvana.org/">http://nerdnirvana.org/</a>).</p>
            <p>There are image alignment classes if you want to align your images; just check out the CSS file.</p>
            <p>If you want the PSD to the banner, you can get it here: <a href="http://nerdnirvana.org/oswd/banner.psd">http://nerdnirvana.org/oswd/banner.psd</a>. The font file that the PSD uses can be found here: <a href="http://nerdnirvana.org/oswd/Backslash.ttf">http://nerdnirvana.org/oswd/Backslash.ttf</a>.</p>
            <p>You can freely use this for whatever as long as you include my name and link at the bottom.</p>
            <small>+<a href="http://nerdnirvana.org/">snguyen</a>; January 6th, 2006 at 15:43:42 <a href="#"><img src="pav/comment.gif" alt="comment" title="comment on this post" /></a> <a href="#">0 Comments »</a></small>
        </div>
 
        <div class="contentbox">
            <h3>Pagrindines komandos</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce fermentum dolor nec lorem. Integer elit magna, blandit eu, molestie non, mollis in, mi. Duis adipiscing. Ut porta justo eget purus. Donec condimentum. Praesent pulvinar, dui egestas hendrerit elementum, nunc odio congue dui, id venenatis justo dolor sagittis metus. Integer est. Aliquam aliquam suscipit felis. Nunc non pede viverra magna tincidunt convallis. Cras vulputate tincidunt dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc ligula est, congue in, commodo porttitor, accumsan quis, libero.</p>
 
<p>Mauris blandit dapibus est. In hac habitasse platea dictumst. Fusce dolor. Etiam in erat a orci posuere pretium. Integer urna. Sed tempus. Curabitur rutrum. Aliquam pellentesque, enim sodales pulvinar volutpat, turpis eros lobortis diam, a consequat eros turpis in nibh. Nunc venenatis egestas eros. Praesent vitae odio placerat lacus auctor elementum. Mauris tincidunt tincidunt dolor. Duis mollis lacus eu augue. Integer commodo varius elit.
</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam magna. Sed quam mi, facilisis in, adipiscing eu, convallis at, turpis. Nam pulvinar. Sed id libero. Duis ultrices imperdiet sapien. Cras pretium erat et urna. Vestibulum eu mauris. Suspendisse sed nisi. Vivamus nunc. Vestibulum ut felis. Proin justo mi, laoreet eu, mattis ac, lobortis et, purus.</p>
 
<p>Sed eget justo ac libero adipiscing pulvinar. In hac habitasse platea dictumst. Nam accumsan, nisl malesuada porttitor iaculis, dui risus mattis enim, in luctus erat enim vel orci. Mauris nibh arcu, gravida vel, vulputate eget, scelerisque vel, risus. In hac habitasse platea dictumst. Sed sit amet metus. Nam bibendum, felis non porta lacinia, tellus purus suscipit velit, in sollicitudin velit tortor non augue. Pellentesque dignissim tellus viverra ipsum. Maecenas elementum arcu id est. Ut ornare lobortis quam.</p>
 
<p>Donec elementum. Donec nec nibh. Nam eget dui eget dui tincidunt varius. Suspendisse posuere, pede sodales placerat suscipit, lacus massa posuere augue, vitae luctus eros elit id lacus. Morbi nisi ante, tempor ut, volutpat at, vestibulum at, nunc. In interdum dolor eu massa. Mauris bibendum magna vel ante. Suspendisse fringilla luctus nunc. Suspendisse potenti. In a diam sodales mi luctus pretium.</p>
 
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
    
 
 
        <div id="footer">
             
     Programmed by <a href="#">&nbsp;Robertas&nbsp; Nevoinas</a> &nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; Designed by <a href="#">&nbsp;Robertas&nbsp; Nevoinas</a>
        </div>
    </div> <!-- ends supportingtext div -->
 
    
    <div id="linkList">
    <!--    <div id="linkList2">
            <div class="thelinks"> -->
                <form action="" id="login" method="post">               
    <fieldset id="inputs">
    
    <div id="In">Log In</div><img id="swirl" src="pav/swirl.gif" alt=""></img><img id="swirl2" src="pav/swirl2.gif" alt=""></img>
    <div id="div2"></div>
 
        <strong>Vartotojo Vardas</strong>:
    <input type="text" name="login" value="<?php echo @$data['login']; ?>">
        
        
        
            <div id="tarpas">
        <strong>Slaptazodis</strong>:
    <input type="password" name="password" value="<?php echo @$data['password']; ?>">
    <div id="tarpas2">
        <button type="submit" name="do_login" class="but">Ieiti</button>
        <input name="save" type="checkbox" value='1'> Prisiminti mane
    </fieldset>
    <fieldset id="actions">
        
        <a href="server/reminder.php">Forgot your password?</a><br><br><a href="signup.php">Registracija</a>
    </fieldset>
</form>
            </div>
 
            
    </div>
 
 
</div>
 
</body></html>


Добавлено через 41 минуту
Ну крч я может че-то и сделал. Я добавил команду - error_reporting(0); Надеюсь с ней ничего страшного не будет, теперь поставил кодировку на utf-8 и шрифты работают. Могу еще показать где добавить -

db.php
PHP
1
2
3
4
5
6
7
8
9
10
<?php 
 
require "libs/rb.php";
R::setup( 'mysql:host=localhost;dbname=pr2',
        'root', '' );
        error_reporting(0);
 
        session_start();
    
        ?>
0
Jewbacabra
23.01.2017, 08:33
  #8

Не по теме:

Цитата Сообщение от Terminator004 Посмотреть сообщение
Ну крч я может че-то и сделал. Я добавил команду - error_reporting(0);
"Я в домике"

0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
23.01.2017, 14:59  [ТС] 9
Цитата Сообщение от Jewbacabra Посмотреть сообщение
"Я в домике"
Какой дом?
0
Эксперт PHP
3879 / 3220 / 1350
Регистрация: 01.08.2012
Сообщений: 10,864
23.01.2017, 16:36 10
Цитата Сообщение от Terminator004 Посмотреть сообщение
PHP
1
2
?>
<?php
Уберите эти теги в начале. Из-за них создаётся лишний перенос строки, который приводит к вашей ошибке.

Цитата Сообщение от Terminator004 Посмотреть сообщение
Я добавил команду - error_reporting(0);
Никогда так не делайте.
0
Эксперт PHP
4925 / 3920 / 1620
Регистрация: 24.04.2014
Сообщений: 11,441
23.01.2017, 16:57 11
Цитата Сообщение от Jodah Посмотреть сообщение
?>
<?php
Уберите эти теги в начале. Из-за них создаётся лишний перенос строки, который приводит к вашей ошибке.
когда интерпретатор PHP встречает закрывающие теги ?>, он просто начинает выводить все что найдет (за исключением сразу следующего символа перевода строки - смотрите раздел разделение инструкций)
http://php.net/manual/ru/langu... hpmode.php
Цитата Сообщение от Terminator004 Посмотреть сообщение
Какой дом?
Игнорирование ошибки не исправляет ее, а откладывает ее проявление
1
Эксперт PHP
3879 / 3220 / 1350
Регистрация: 01.08.2012
Сообщений: 10,864
23.01.2017, 17:07 12
Jewbacabra, проверил, так и есть. Спасибо.
0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
24.01.2017, 02:02  [ТС] 13
Здравствуйте, у меня проблема с кодировкой UTF-8 без BOM. Я во всех своих страницах с кодами наставил эту кодировку и по сути русский шрифт должен нормально работать, но у меня он не работает, то-есть на сайте всё что написано по-русски, так становиться иероглифами! Вот скрин могу дать, посмотрите на это...
Ссылка вырезана
Так вот, даже не знаю что делать. Может мне что-то надо в коде дописать про кодировку? Могу и свои коды дать.

index.php (эта главная моя страница, в ней есть и скрипт авторизации)
PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php 
session_start();
require "db.php";
 
$data = $_POST;
if( isset($data['do_login']))
{
    $errors = array();
    $user = R::findOne('users', 'login = ?', array($data['login']));
    if( $user )
    {
        // логин существует
        if ( md5($data['password']) == $user->password) {
            // всё хорошо, логиним пользователя
            $_SESSION['logged_user'] = $user;
      
        } else
        {
            $errors[] = 'Неверный пароль!';
        }
    } else
    {
        $errors[] = 'Пользователь с таким логином не найден!';
    }
    
    if( ! empty($errors))
    {
        echo '<div style="color: red;">'.array_shift($errors).'</div><hr>';
    }
}
 
?>
 
<?php if( isset($_SESSION['logged_user'])) : ?>
    Подключён!<br>
    Здравствуйте, <?php echo $_SESSION['logged_user']->login; ?>!
    <hr>
    <a href="logout.php">Отключиться</a>
    <?php else : ?>
<a href="index.php"></a><br>
<?php endif; ?>
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//En"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="author" content="Sang Nguyen" />
    <meta name="description" content="[insert description here]" />
    <meta name="robots" content="all" />
    <title>Мой мир</title>
    <script type="text/javascript"></script>
     <link rel="stylesheet" type="text/css" href="pav/style.css">
    
    
</head>
 
<body  onload="lous.l.focus()">
 
<div id="container">
    <div id="header">
        <div id="pageHeader">
        
        
        
        <img src="pav/logo.png" id="logo">
    
            <h1 id="nams" style="color:#fff">Мировые события</h1>
            
            <h2>&nbsp;</h2>
            
            <div id="tabs11">
                <ul>
                    <li><a href="#" title="Pagrindinis" class="currentTab"><span>Главная</span></a></li>
                    <li><a href="#" title="Galerija"><span>Галерия</span></a></li>
                    <li><a href="#" title="Kontaktai"><span>Контакты</span></a></li>
                    <li><a href="#" title="Onlie Chat"><span>Online Chat</span></a></li>
                    <li><a href="mailto:193robi.new@gmail.com"><span>Напишите нам</span></li></a>
            <div id="Online">   Активные пользователи: ~COLUS~<br><div id="probel"></div>
Зарегистрированные пользователи: ~REGUS~</div>
 
                </ul>
            </div>
        </div>
 
    </div> <!-- ends intro div -->
 
    <div id="content">
        <div class="contentbox">
            <h3>Семья?</h3>
            <p>This is my first submission to Ex-designz web template. I've been surfing Ex-designz web template for quite some time, and I thought I should give back to the community. This design is loosely based on my own (<a href="http://nerdnirvana.org/">http://nerdnirvana.org/</a>).</p>
            <p>There are image alignment classes if you want to align your images; just check out the CSS file.</p>
            <p>If you want the PSD to the banner, you can get it here: <a href="http://nerdnirvana.org/oswd/banner.psd">http://nerdnirvana.org/oswd/banner.psd</a>. The font file that the PSD uses can be found here: <a href="http://nerdnirvana.org/oswd/Backslash.ttf">http://nerdnirvana.org/oswd/Backslash.ttf</a>.</p>
            <p>You can freely use this for whatever as long as you include my name and link at the bottom.</p>
            <small>+<a href="http://nerdnirvana.org/">snguyen</a>; January 6th, 2006 at 15:43:42 <a href="#"><img src="pav/comment.gif" alt="comment" title="comment on this post" /></a> <a href="#">0 Comments »</a></small>
        </div>
 
        <div class="contentbox">
            <h3>Жизнь</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce fermentum dolor nec lorem. Integer elit magna, blandit eu, molestie non, mollis in, mi. Duis adipiscing. Ut porta justo eget purus. Donec condimentum. Praesent pulvinar, dui egestas hendrerit elementum, nunc odio congue dui, id venenatis justo dolor sagittis metus. Integer est. Aliquam aliquam suscipit felis. Nunc non pede viverra magna tincidunt convallis. Cras vulputate tincidunt dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc ligula est, congue in, commodo porttitor, accumsan quis, libero.</p>
 
<p>Mauris blandit dapibus est. In hac habitasse platea dictumst. Fusce dolor. Etiam in erat a orci posuere pretium. Integer urna. Sed tempus. Curabitur rutrum. Aliquam pellentesque, enim sodales pulvinar volutpat, turpis eros lobortis diam, a consequat eros turpis in nibh. Nunc venenatis egestas eros. Praesent vitae odio placerat lacus auctor elementum. Mauris tincidunt tincidunt dolor. Duis mollis lacus eu augue. Integer commodo varius elit.
</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam magna. Sed quam mi, facilisis in, adipiscing eu, convallis at, turpis. Nam pulvinar. Sed id libero. Duis ultrices imperdiet sapien. Cras pretium erat et urna. Vestibulum eu mauris. Suspendisse sed nisi. Vivamus nunc. Vestibulum ut felis. Proin justo mi, laoreet eu, mattis ac, lobortis et, purus.</p>
 
<p>Sed eget justo ac libero adipiscing pulvinar. In hac habitasse platea dictumst. Nam accumsan, nisl malesuada porttitor iaculis, dui risus mattis enim, in luctus erat enim vel orci. Mauris nibh arcu, gravida vel, vulputate eget, scelerisque vel, risus. In hac habitasse platea dictumst. Sed sit amet metus. Nam bibendum, felis non porta lacinia, tellus purus suscipit velit, in sollicitudin velit tortor non augue. Pellentesque dignissim tellus viverra ipsum. Maecenas elementum arcu id est. Ut ornare lobortis quam.</p>
 
<p>Donec elementum. Donec nec nibh. Nam eget dui eget dui tincidunt varius. Suspendisse posuere, pede sodales placerat suscipit, lacus massa posuere augue, vitae luctus eros elit id lacus. Morbi nisi ante, tempor ut, volutpat at, vestibulum at, nunc. In interdum dolor eu massa. Mauris bibendum magna vel ante. Suspendisse fringilla luctus nunc. Suspendisse potenti. In a diam sodales mi luctus pretium.</p>
 
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
 
        <div class="contentbox">
            <h3>Lorem ipsum</h3>
            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean elit eros, condimentum suscipit, scelerisque et, lacinia nec, lectus. Aenean ipsum metus, venenatis eget, tempus ac, ullamcorper id, magna. Mauris aliquam tempor lorem. Nullam semper, dolor sit amet hendrerit fringilla, nulla purus fermentum tortor, nec scelerisque ligula felis non ipsum. In hac habitasse platea dictumst. Donec a erat. Cras nonummy, nisi sed elementum iaculis, leo nisl ultricies quam, nec volutpat justo lacus quis justo. In at massa. Etiam hendrerit pede at velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum pulvinar consectetuer elit. Sed nibh nibh, auctor vitae, pellentesque a, vestibulum ac, orci. Duis egestas. Suspendisse feugiat lectus. Integer et mi eu elit fringilla accumsan. Etiam eleifend turpis feugiat turpis. Integer dictum ullamcorper mi. Phasellus turpis massa, molestie et, rhoncus eu, mattis quis, nulla. Phasellus facilisis. Donec ut orci ac urna imperdiet tincidunt.</p>
        </div>
    
 
 
        <div id="footer">
             
     Programmed by <a href="#">&nbsp;****&nbsp; ****</a> &nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; Designed by <a href="#">&nbsp;*****&nbsp; *****</a>
        </div>
    </div> <!-- ends supportingtext div -->
 
    
    <div id="linkList">
    <!--    <div id="linkList2">
            <div class="thelinks"> -->
                <form action="" id="login" method="post">               
    <fieldset id="inputs">
    
    <div id="In">Log In</div><img id="swirl" src="pav/swirl.gif" alt=""></img><img id="swirl2" src="pav/swirl2.gif" alt=""></img>
    <div id="div2"></div>
 
        <strong>Логин</strong>:
    <input type="text" name="login" value="<?php echo @$data['login']; ?>">
        
        
        
            <div id="tarpas">
        <strong>Пароль</strong>:
    <input type="password" name="password" value="<?php echo @$data['password']; ?>">
    <div id="tarpas2">
        <button type="submit" name="do_login" class="but">Войти</button>
        <input name="save" type="checkbox" value='1'> Запомнить меня
    </fieldset>
    <fieldset id="actions">
        
        <a href="server/reminder.php">Забыли пароль?</a><br><br><a href="signup.php">Регистрация</a>
    </fieldset>
</form>
            </div>
 
            
    </div>
 
 
</div>
 
</body></html>
db.php ( тут подключение к базе данных и дурная команда Session_Start)
PHP
1
2
3
4
5
6
7
8
9
10
<?php 
 
 
require "libs/rb.php";
R::setup( 'mysql:host=localhost;dbname=pr2',
        'root', '' );
        
        //session_start();
    
?>
logout.php ( тут происходит выход пользователя из его аккаунта )
PHP
1
2
3
4
5
6
<?php
 session_start();
    require "db.php";
    unset($_SESSION['logged_user']);
    header('Location: index.php');
?>
signup.php ( тут регистрация )
PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
 session_start();
require "db.php";
 
$data = $_POST;
if( isset($data['do_signup']))
{
    // здесь регистрируем
    
    $errors = array();
    if( trim($data['login']) == '' )
    {
        $errors[] = 'Введите логин!';
    }
 
    if( trim($data['email']) == '' )
    {
        $errors[] = 'Введите почту!';
    }
 
    if( ($data['password']) == '' )
    {
        $errors[] = 'Введите пароль!';
    }
    
    if( $data['password_2'] != $data['password'] )
    {
        $errors[] = 'Повторный пароль, введён не верно!';
    }
    
    if(R::count('users', "Login = ?", array($data['login'])) > 0 )
    {
        $errors[] = 'Пользователь с таким логином уже зарегестрированый';
    }
    
    if(R::count('users', "email = ?", array($data['email'])) > 0 )
    {
        $errors[] = 'Пользователь с такой почтой уже зарегестрированый';
    }
    if( empty($errors) )
    {
        // всё хорошо, регистрируем
        $user = R::dispense('users');
        $user->login = $data['login'];
        $user->email = $data['email'];
        $user->password = md5($data['password']);
        R::store($user);
        echo '<div style="color: green;"> Вы успешно зарегестрировались!</div>';
        echo '<div style="color: green;">Можете перейти на <a href="index.php">Главную</a> Страницу';
        
    }else
    {
        echo '<div style="color: red;">'.array_shift($errors).'</div><hr>';
    }
    
}
 
?>
 
<form action="signup.php" method="POST">
 
<p>
    <p><strong>Логин</strong>:</p>
    <input type="text" name="login" value="<?php echo @$data['login']; ?>">
</p>    
 
<p>
    <p><strong>Почта</strong>:</p>
    <input type="email" name="email" value="<?php echo @$data['email']; ?>">
</p>    
 
<p>
    <p><strong>Пароль</strong>:</p>
    <input type="password" name="password" value="<?php echo @$data['password']; ?>">
</p>    
 
<p>
    <p><strong>Повторите пароль</strong>:</p>
    <input type="password" name="password_2" value="<?php echo @$data['password_2']; ?>">
</p>    
 
<p>
    <button type="submit" name="do_signup">Зарегистрироваться</button>
</p>
 
</form>
Добавлено через 1 минуту
И еще, у меня такое примечание. Почему в название темы, нельзя написать слово " Проблема " ????
0
Заблокирован
24.01.2017, 03:09 14
Как сообщаете браузеру о кодировке? Установите в браузере явно UTF/Unicode, тогда можно будет оценить корректность того, что отправляется браузеру.

Добавлено через 5 минут
В пыхе есть настройка default_charset, которая в новых версиях по умолчанию задается равной UTF-8. На обычных страницах в HTML-коде вы просто указываете то же самое, чтобы не было противоречий. Если оставите значение default_charset пустым, вам нужно будет либо вручную отправлять заголовок Content-Type, либо задавать кодировку прямо на странице при помощи HTML, ну либо опять и то, и др. без противоречий.
0
3 / 2 / 1
Регистрация: 14.09.2016
Сообщений: 501
03.02.2017, 22:59  [ТС] 15
Исправил. Создал файл .htaccess и там написал:
AddDefaultCharset off
0
03.02.2017, 22:59
raxper
Эксперт
30234 / 6612 / 1498
Регистрация: 28.12.2010
Сообщений: 21,154
Блог
03.02.2017, 22:59
Помогаю со студенческими работами здесь

Трабл при использовании кодировки utf-8 без BOM
Использование кодировки utf-8 без BOM помогает решить проблему связанную с вызовом функции...

Не сохраняется файл в кодировке utf-8 without bom
Мне нужно сохранить файл в кодировке UTF-8 без BOM. Для этого пробовал два способа - ...

Объединить несколько TXT-файлов в кодировке UTF-8 с BOM
Прошу у вас помощи. Нужно объединить множество TXT файлов в один. Файлы в UTF-8 с BOM. COPY *.TXT...

Изменить кодировку из utf-8 без bom в просто utf-8
формируется xls фаил в коде прописано...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
15
Ответ Создать тему
Новые блоги и статьи
Как написать микросервис на Go/Golang
InfoMaster 14.01.2025
Определение микросервиса, преимущества использования Go/ Golang Микросервис – это архитектурный подход к разработке программного обеспечения, при котором приложение состоит из небольших, независимо. . .
Как написать микросервис с нуля на C#
InfoMaster 14.01.2025
В современном мире разработки программного обеспечения микросервисная архитектура стала стандартом де-факто для создания масштабируемых и гибких приложений. Этот архитектурный подход предполагает. . .
Как создать интернет-магазин на PHP и JavaScript
InfoMaster 14.01.2025
В современном мире электронная коммерция стала неотъемлемой частью бизнеса. Создание собственного интернет-магазина открывает широкие возможности для предпринимателей, позволяя достичь большей. . .
Как написать Тетрис на Ассемблере
InfoMaster 14.01.2025
Тетрис – одна из самых узнаваемых и популярных компьютерных игр, созданная в 1984 году советским программистом Алексеем Пажитновым. За прошедшие десятилетия она завоевала симпатии миллионы людей по. . .
Как создать игру "Танчики" на Unity3d и C#
InfoMaster 14.01.2025
Разработка игр – это увлекательный процесс, сочетающий в себе творчество и технические навыки. В этой статье мы рассмотрим создание классической игры "Танчики" с использованием Unity3D и языка. . .
Организую платный онлайн микро-курс по доработке Android-клиента Telegram
_Ivana 14.01.2025
Официальная версия и распространенные форки не полностью устраивают? Сделай свою кастомную версию клиента! 4 занятия по 2 часа (2 недели пн, ср 19:00-21:00 по Москве). Первое вводное занятие. . .
Как создать приложение для фитнеса для iOS/iPhone на Kotlin
InfoMaster 14.01.2025
Создание собственного фитнес-приложения — это не только захватывающий, но и полезный процесс, ведь оно может стать вашим верным помощником на пути к здоровому и активному образу жизни. В современных. . .
Как создать приложение магазина для iOS/iPhone на Swift
InfoMaster 14.01.2025
Введение в разработку iOS-приложений Разработка приложений для iPhone и других устройств на базе iOS открывает огромные возможности для создания инновационных мобильных решений. В данной статье мы. . .
Это работает. Скорость асинхронной логики велика. Вопрос видимо останется в стабильности. Плата - огонь!
Hrethgir 13.01.2025
По прошлому проекту в Logisim Evolution https:/ / www. cyberforum. ru/ blogs/ 223907/ blog8781. html прилагаю файл архива проекта в Gowin Eda. Восьмибитный счётчик из сумматора+ генератор сигнала. . .
UserScript для подсветки кнопок языков программировани­­­­я в зависимости от текущего раздела
volvo 13.01.2025
В результате работы этого скрипта подсвечиваются нужные кнопки не только в форме быстрого ответа, но и при редактировании сообщения: / / ==UserScript== / / @name CF_DefaultLangSelect / / . . .
Введение в модели и алгоритмы машинного обучения
InfoMaster 12.01.2025
Машинное обучение представляет собой одну из наиболее динамично развивающихся областей искусственного интеллекта, которая фокусируется на разработке алгоритмов и методов, позволяющих компьютерам. . .
Как на Python создать нейросеть для решения задач
InfoMaster 12.01.2025
В контексте стремительного развития современных технологий особое внимание уделяется таким инструментам, как нейросети. Эти структуры, вдохновленные биологическими нейронными сетями, используются для. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2025, CyberForum.ru