我有這個引導程序按鈕:
<button type='button' class='btn btn-info btn-xs' data-id='"<?php echo $row['IdPrenotazione']?>"' data-toggle='modal' data-target='#myModal'>Dettaglio</button>
打開一個模式引導。
這是模態的代碼:從數據庫($行[ 'IdPrenotazione'])
怎麼辦
<!-- Modal -->
<div id='myModal' class='modal fade' role='dialog'>
<div class='modal-dialog'>
<!-- Modal content-->
<div class='modal-content'>
<div class='modal-header'>
<button type='button' class='close' data-dismiss='modal'></button>
<h5 class='modal-title'>Dettaglio Prenotazioni</h4>
</div>
<div class='modal-body'>
<?php
$conn1 = odbc_connect($dsn,$user,$pass);
$query1="SELECT TipoEsame.IdTipoEsame+' - '+TipoEsame.Descrizione tipEsame FROM TipoEsame,DettaglioPrenotazione
WHERE TipoEsame.IdTipoEsame=DettaglioPrenotazione.IdTipoEsame
AND DettaglioPrenotazione.IdPrenotazione="....
$result1 = odbc_exec($conn1,$query1);
$testo="
while($row1 = odbc_fetch_array($result1))
{$testo=$testo."<br>".$row1['tipEsame'];}
odbc_free_result($result1);
odbc_close($conn1);
echo $testo;?>
</div>
<div class='modal-footer'>
<button type='button' class='btn btn-info btn-xs' data-dismiss='modal'>Chiudi</button>
</div>
</div>
</div>
</div>
查詢模態代碼需要 'IdPrenotazione'? 謝謝
那是PHP代碼嗎? – Midas
php代碼必須在'<?php echo id; ?>' –
請參閱[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask)。 我很樂意幫助你,但這不符合質量標準。幫助他人重現問題。我的主要問題是我們沒有你所指的SQL數據庫,並且很難重現這個問題。 –