php で関数 function を使用する方法がわかりません
私の one.php ページの 1 つ:
include("conn.php");
$rs=mysql_query ("
(
select op_values from table1 where op.id=11
)union
(
select op_values from table2 where op.id=12
)
while($row=mysql_fetch_array($rs))
{
echo "$row[op_values]
";
}
?> ;
two.php ページの下:
include("conn.php");
define( 'ID_OUTPUT_VOLTAGE', 31);
define('ID_OUTPUT_CURRENT', 35);
$V = getProductAttributes(ID_V, $p_id);
$A = getProductAttributes(ID_A, $p_id);
function getProductAttributes(){
ここにどう書いたらいいのかわかりません、SQL の 2 つの値 op_values を取得してエコーアウトしたいのです
}
そして w=V*A ;
-----解決策-------- ------------
while($row=mysql_fetch_array($rs)) { // echo "$row[op_values]
"; //値を渡すだけの場合は出力する必要はありません。 $arr[]= $row[op_values];