2016-09-20 8 views
0

私が提出シングルクリック、フォーム上の両方のカラーボックスとphpの挿入機能を実行します。1つのサブミット入力タイプに対してcolorboxとsubmitアクションの両方を実行する方法は?

これは私のフォームです:

<form name="album" id="album" action="#"> 
     <table> 
      <tr> 
       <td>Album Name</td> 
       <td><input type="text" value="" name="album_titlee" required></td> 
      </tr> 
      <tr> 
       <td colspan="2"><input class="button_new" type="submit" name="submit_album" id="submit_album" value="ADD"></td> 
      </tr> 
     </table> 
</form> 

これは、これは私のPHPの関数である

<div style='display:none'> 
     <div id='inline_content' style='padding:10px; background:#fff;'> 
      <p>We recommend the following resolutions for different print sizes.</p> 
      <table> 
        <tbody> 
         <tr> 
          <th width="80" height="25">Size</th> 
          <th>Minimum Resolution</th> 
         </tr> 
         <tr> 
          <td height="25">3.5" x 5"</td> 
          <td>525 x 750 pixels (0.4 megapixels)</td> 
         </tr> 
        </tbody> 
      </table> 
     </div> 
    </div> 
</div> 

をコーディング私のカラーボックスで[フォーム送信の場合]:

<?php 
if(isset($_REQUEST['submit_album'])) 
{ 
$album_titlee=$_REQUEST['album_titlee']; 
$user_id=$_SESSION['ses_userid']; 


$sql=mysqli_query($conn,"INSERT INTO tbl_album(user_id,album_title,album_status) VALUES ('".$user_id."','$album_titlee','Y')"); 

echo("<script type='text/javascript'>$.colorbox({inline:true,width:'50%', href:'#inline_content'});</script>"); 

} 
?> 

上記のPHPコードデータを完全に挿入するだけですが、挿入ステートメントの後に私は#inline_content divisionをcolorbox.Itで開く必要があります。 t execute.Howは、フォームデータをdbに挿入した後にカラーボックスを開くことができます。

答えて

0

最後に私は、フォームデータを挿入します後、私need.Justは、Javaスクリプト関数を呼び出し実現します。

echo "<script type='text/javascript'>window.onload = function() 
{ 
    popup(); 
} 
</script>"; 
0

これにはajaxを使用する必要があります。 Javascriptを:

albumTitleeFromInput = $("input[name=album_titlee]").val(); 

$.ajax({ 
     url: "/urlToYourPhpScript", 
     type: "POST", 
     dataType: 'json', 
     data: { 
      album_titlee: albumTitleeFromInput 
     }, 
     success: function (data) { 
      //Open your colorbox in there 
     } 
    }); 
+0

私は、同じページにphpとcolorboxコードの両方を持っています。だから私はPHPスクリプトに別のURLを渡すことができます。 –

+0

PHPコードを別のファイルに置くことができます。 – Eimsas

+0

私は私の必要性を達成しました。あなたのサポートに感謝します。 –

関連する問題