PHP: <?php $file = array(); // будущий массив $files1 = file("file1"); $files2 = file("file2"); for ($i=0;$i<count($files1);$i++) { $file[$file2[$i]] = $files1[$i]; // ну или как там тебе нужно их собрать } ?>
Привет возникла ошибка http://i073.radikal.ru/1105/48/30d37a89a49b.jpg вот етих два поля виделени красним нужно слить и зделать как одно как ето можно организовать? пологаю нужний код ето вот етот.... http://zalil.ru/31025908 как ево следует отредактировать? помогите пожалосто
Adio PHP: <?php $files1= file("textfile1.txt"); $files2= file("textfile2.txt"); $i = 0; while ($i<count($files1)): echo "".$files1[$i].$files2[$i]."<br>\n"; $i++; endwhile; ?> Так что ли?
Возвращает имя Internet-хоста, специфицированного параметром ip_address. Если возникает ошибка, возвращает ip_address. Ничего не грузит
Из за чего так? Почему при написание комента sidebar уходит под comments! PHP: <?php // Do not delete these lines // thanks to Jeremy at http://clarktech.no-ip.com for the tips if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ( 'Please do not load this page directly. Thanks!' ); if ( function_exists( 'post_password_required' ) ) { // If the post is password protected if ( post_password_required() ) { echo '<p class="nocomments">This post is password protected. Enter the password to view comments.</p>'; return; } } else { if (!empty($post->post_password)) { // if there's a password if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie ?> <p class="nocomments">This post is password protected. Enter the password to view comments.</p> <?php return; } } } //WP 2.7 Comment Loop if ( have_comments() ) : ?> <?php if ( ! empty($comments_by_type['comment']) ) : $count = count($comments_by_type['comment']); ($count !== 1) ? $txt = "Comments: " : $txt = "Comment:"; ?> <h3><?php echo $count . " " . $txt; ?></h3> <ul class="commentlist"> <?php wp_list_comments( 'type=comment&callback=motiontheme_comment' ); ?> </ul> <?php endif; ?> <div id="navigation"> <div class="alignleft"><?php previous_comments_link(); ?></div> <div class="alignright"><?php next_comments_link(); ?></div> <script type="text/javascript" src="//yandex.st/share/share.js" charset="utf-8"></script> <div class="yashare-auto-init" data-yashareL10n="ru" data-yashareType="button" data-yashareQuickServices="yaru,vkontakte,facebook,twitter,odnoklassniki,moimir,lj,friendfeed,moikrug"></div> <?php if ( ! empty($comments_by_type['pings']) ) : $countp = count($comments_by_type['pings']); ($countp !== 1) ? $txtp = "Trackbacks / Pingbacks for this entry:" : $txtp = "Trackback or Pingback for this entry:"; ?> <h3 id="trackbacktitle"><?php echo $countp . " " . $txtp; ?></h3> <ul class="trackback"> <?php wp_list_comments( 'type=pings&callback=motiontheme_ping' ); ?> <?php endif; ?> <?php endif; ?> <?php if (comments_open( $post->ID )){ comment_form(); } ?>
Хочу сделать загрузку с одного сервера на другой частями. Если возможно, то как? Делить файл на отдающем сервере или скачивать целиком, а потом делить, не вариант.
PHP: function connect($link,$post=null,$cookie=null,$ref=null){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$link); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // вывод в браузер curl_setopt ($ch, CURLOPT_HEADER, 1); //заголовки curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // локатион curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10'); if($post !== null) { curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); } if($cookie!==null){ curl_setopt($ch, CURLOPT_COOKIE, $cookie); } if($ref!==null){ curl_setopt ( $ch , CURLOPT_REFERER , "http://qwe.com/auth.php" ); } $otvet = curl_exec($ch); curl_close($ch); return $otvet; } в общем, когда на денвере вызываю echo connect('http://qweqwe.com',null,null,null); выводит заголовок и содержимое стр, а когда на хосте этот скрипт запускаю, то только странный заголовок, вида PHP: HTTP/1.1 302 Found Server: nginx/0.8.54 Date: Sat, 14 May 2011 20:19:17 GMT Content-Type: text/html; charset=utf-8 Connection: keep-alive X-Powered-By: PHP/5.3.3 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: da_user_logined=104357; path=/ Location: http://www.qwerty.ru/user/
Добавляю картинку на серв PHP: $post1 = array( 'image' => '@D:\DenServ\home\test1.ru\www\qwer\111.jpg;type=jpg', 'url' => $url, 'text' => $text[$i], 'descr' => $text[$i], 'section_id' => '29', 'price' => $price, 'postnewteaser' => 'post', ); На серв почему-то грузится картинка без расширения, если убрать type=jpg, то вообще не грузит! В чем проблемс?
Можно как-нибудь добавить параллельную авторизацию по своему логину и паролю? Добавить как-то примерно такое: $qu = '123'; $qp = '123'; if (($_SESSION['USE_FULL_VIEW'])||(login($_POST['username'] == $qu) && ($_POST['password'] == $qp)) сюда: PHP: <? include_once $_SERVER['DOCUMENT_ROOT'].'/base_config.php'; include_once _ADMIN_INC.'admin.php'; if (!((isset($_POST['username'])) && (isset($_POST['password'])))) { error($main_lang['not_is_one_filled']); } if (login($_POST['username'], $_POST['password'])) { if (($_SESSION['USE_FULL_VIEW'])||(get_field($users_table, 'id', " WHERE username='".mysql_real_escape_string($_POST['username'])."' AND password='".md5(md5($_POST['password']))."'") > 0)) { $_SESSION['sess_reg'] = $_POST['username']; if (USE_MODULE_AUTH) { $modules = get_modules(); } if (count($modules) > 0) { redirect($modules[0][0]); } else { unset($_SESSION['sess_reg']); redirect(_ADMIN_LINK); exit(); } } else { redirect(_ADMIN_LINK); exit(); } } else { redirect(_ADMIN_LINK); exit(); } ?>
A_n_d_r_e_i попробуйте так: PHP: if (login($_POST['username'], $_POST['password']) || ($_POST['login'] == 'your_login' && $_POST['password'] == 'your_password' && ($_SESSION['USE_FULL_VIEW']=1))) Но вам стоит просмотреть и функцию login, возможно в ней устанавливаются права пользователя и троянить лучше ее Expl0ited попробуйте так : PHP: 'image' => '@D:\DenServ\home\test1.ru\www\qwer\111.jpg;type=image/jpeg', Ручками файл заливается нормально? Попробуйте направить запрос на страницу выводящую phpinfo(); и посмотрите в ответе массив $_FILES