PDA

View Full Version : ادغام کد در کدی دیگر php



samanelf
پنج شنبه 13 تیر 1392, 02:51 صبح
سلام دوستان

من 2 تا کد دارم میخوام داخل هم ادغام کنم یعنی تو صحفه اولم نمایش بده چجوری میشه اینکارو کرد
اگه میشه کمک کنید چون این به در خواست رفیقم هستش و منتظر جواب از من هستند

کد صحفه اصلی
<?php get_header(lolosh); ?>

<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()):the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="post">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_post_thumbnail( array(25,25) );?><?php the_title(); ?></a></h2>
<p class="meta">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="more">Read full article</a>
<b>&nbsp;|&nbsp;</b><?php comments_popup_link('No Comments', '1 Comment', '% Comments', 'comments'); ?>
</p>
<div class="entry">
<?php if ($smartbiz->showFull() == 'true' ):
global $more;
$more=1;
the_content(); ?>
<div style="clear:both;"></div>
<?php else : ?>
<div class="excerpt"><?php if ( get_the_excerpt() != '' ){
the_excerpt();
}else{
global $more;
$more=0;
the_content();
} ?></div>
<div style="clear:both;"></div>
<p><a href="<?php the_permalink() ?>" class="links">Read More</a></p>
<?php endif; ?>
</div>
</div>
<?php endwhile; ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div class="navigation">
<div class="alignleft">
<?php previous_posts_link('&laquo; Previous Entries') ?>
</div>
<div class="alignright">
<?php next_posts_link('Next Entries &raquo;') ?>
</div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>

<?php get_sidebar(); ?>
<?php get_footer(); ?>


اینم کد که میخوام نمایش داده شود البته واسه سیستم پیامک هستش
<?php


require_once('nusoap.php');
$client = new nusoap_client('http://payamak-panel.com/post/send.asmx?wsdl');

$err = $client->getError();

if ($err)
{

echo 'Constructor error' . $err;

}

$parameters['username'] = "demo";
$parameters['password'] = "demo";
$parameters['to'] = "912...";
$parameters['from'] = "1000..";
$parameters['text'] ="تست";
$parameters['isflash'] =false;


$result = $client->call('SendSimpleSMS2', $parameters);
print_r($result);

?>

afiroozi
پنج شنبه 13 تیر 1392, 10:14 صبح
salam
fek konam in bedardet bokhore

<?php require_once($_SERVER['DOCUMENT_ROOT'].'/index/yoururl.php'); ?>