Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.