Jump to content

[SOLVED] creating showing image?


sandbudd

Recommended Posts

This code works great with displaying the results in its own page _blank how can I make it just pop up without opening a new browser kinda like in a pop up window?

 

<?php
if(empty($row_Recordset1['map'])){
   //empty() returned true : so there is nothing
   echo 'Directions';
}else{
   //empty() returned false so it is NOT true that there is nothing
   //so we can print it out:
   echo '<a href="/images/map/' . $row_Recordset1['map'] . '"  target="_blank" class="style3">Directions</a>';
}
?>

Link to comment
https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/
Share on other sites

This is more a Javascript issue.

 

Even if you use a javascript popup, it will still open in a new window if you have target="_blank" in your link.

change

echo '<a href="/images/map/' . $row_Recordset1['map'] . '"  target="_blank" class="style3">Directions</a>';

to something like

echo '<a href="javascript://" onClick="popupfunction(\'/images/map/' . $row_Recordset1['map'] . '\');"   class="style3">Directions</a>';

where "popupfunction" is a Javascript function that launches a popup.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.