所以我有一個if else語句,我當前可以打印語句'user1','user2'之間的對話,但不知道如何讓它打印在if/else語句之外。訪問外部的PHP變量if/else語句
我想訪問PHP的那部分之外,在一節,是對變量的產生
之前,這裏是我的PHP的任何幫助
<?php print $conversation_members; ?>
<?php
if (count($rows)) {
$uids= array();
while ($row = mysql_fetch_array($result1)) {
$uids[] = $row['userid'];
}
$last = array_pop($uids);
$conversation_members = '<p>Conversation between ';
$conversation_members .= implode(', ', $uids) . ' and ' . $last;
$conversation_members .= '.</p>';
}
else {
blah blah irrelevant
}
?>
誠摯的謝意!它大大appreciated-一個
指定的字符串變量和打印它在聲明之後。 – Cheery 2014-11-21 01:05:33