cikzann Posted July 24, 2006 Share Posted July 24, 2006 i would like to know if anyone can help me how to popup window using javascript and php..the php script will call the javascript function to popup new window, but, it needs to pass the parameter that read from mySQL db...actually i need to build a calendar with events. when we click to the day that have the events, a popup will appear and the data is read from the databasethank u Quote Link to comment Share on other sites More sharing options...
bltesar Posted July 28, 2006 Share Posted July 28, 2006 There are a couple of ways that I know to do this. I assume that the liks from your calendar will all open the same window that is dynamically generated based on the user selection. Your links could look like this:<a href="javascript:get_data('thischoice');>text identifying this choice</a>and the function looks like this:[code]var openedWindow;get_data(user_selection){//user_selection is sent via GET to process dynamic PHP pagenewURL='show_data.php?user_selection='+user_selection;if(openedWindow!=null){ openedWindow.location.href=newURL;}else{ openedWindow=window.open(newURL, "", "height=400, width=500, resizable=false, etc.");}}[/code]the same can be done using the POST method. set newURL as the form's action and openedWindow as the target. The function then looks like this:[code]var openedWindow;get_data(user_selection){//user_selection is sent via POST to process dynamic PHP pagewindow.forms[0].user_selection.value='+user_selection;if(openedWindow=null){ openedWindow=window.open("", "", "height=400, width=500, resizable=false, etc.");}window.forms[0].submit();}[/code] Quote Link to comment Share on other sites More sharing options...
bltesar Posted July 28, 2006 Share Posted July 28, 2006 Sorry, there were some mistakes in the last block of code, the function to be used for POST submits:[code]var openedWindow;get_data(user_selection){//user_selection is sent via POST to process dynamic PHP pagewindow.forms[0].user_selection.value=user_selection;if(openedWindow==null){ openedWindow=window.open("", "", "height=400, width=500, resizable=false, etc.");}window.forms[0].submit();}[/code]set show_data.php as the form's action Quote Link to comment Share on other sites More sharing options...
cikzann Posted July 31, 2006 Author Share Posted July 31, 2006 thanks a lot....but now, i still have problem with the calendar....the popup problem have been settled...but another problem arise...the date which is the same date for other month which have events doesn't print out in the calendar...the code is like below[code]$i = 0; foreach($weeks as $week){echo "<tr>\n"; foreach($week as $d){ if(($i >= $offset_count) && ($i < ($num_weeks * 7) - $outset)){ $date = "$year-$month-$d"; if (in_array($d,$dateArray)) { for ($f =0; $f < $num3; $f++) { $date_in_db = mysql_result($Result3,$f,"blogDate"); if ($date == $date_in _db) { echo "<td class=\"linkedDay\" align=\"center\" > <a target=\"popup\" onclick=\"var aWin=window.open ('','popup','width=200,height=200,top=350,left=400,resizeable=no,scrollbars=no'); aWin.focus();\"href=\"blog2.php?date=$date\">$d</a></td>\n"; } } } else if($date == date("Y-m-d")){ echo "<td class=\"today\" align=\"center\" >$d</td>\n"; } else { echo "<td class=\"days\" align=\"center\" >$d</td>\n"; } [/code]The date in the db...11/07/2006 - events25/07/2006 - events30/08/2006 - events Quote Link to comment Share on other sites More sharing options...
bltesar Posted August 2, 2006 Share Posted August 2, 2006 It looks like you have omitted a lot of the actual code here. There is not enough information for me to make sense of it. A lot of the variables are not explained and the logical structure is incomplete. Post the entire code or at least more and maybe I can help. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.