MyMammothTech Posted April 14, 2010 Share Posted April 14, 2010 I have tried adding target="_new" or target="_blank" in many different locations and can not get it to work. Any ideas? I am running Apache with MySQL on a MSWin box. Ya I know a MSWin box running Apache and MySQL.... is a no no but it is working echo "$td3" ."<a href='http://support.dell.com/support/downloads/index.aspx?ServiceTag=".textDecode($item->SSN)."'>".textDecode($item->SSN)."</a>"; Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/ Share on other sites More sharing options...
Deoctor Posted April 14, 2010 Share Posted April 14, 2010 try some thing like this echo "$td3" ."<a href='http://support.dell.com/support/downloads/index.aspx?ServiceTag=".textDecode($item->SSN)."' target="'_blank'">".textDecode($item->SSN)."</a>"; Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041488 Share on other sites More sharing options...
MyMammothTech Posted April 14, 2010 Author Share Posted April 14, 2010 Nope Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in C:\xampp\htdocs\ocsreports\machine.php on line 959 Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041489 Share on other sites More sharing options...
Deoctor Posted April 14, 2010 Share Posted April 14, 2010 echo " <a href=\"http://support.dell.com/support/downloads/index.aspx?ServiceTag=". textDecode($item->SSN)."\" target=\"_blank\">". textDecode($item->SSN)."</a> "; Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041491 Share on other sites More sharing options...
MyMammothTech Posted April 14, 2010 Author Share Posted April 14, 2010 That worked!!! Thanks I made one change because the "$td3" tells where to put the text. But now it is working Thanks again echo "$td3" ."<a href=\"http://support.dell.com/support/downloads/index.aspx?ServiceTag=". textDecode($item->SSN)."\" target=\"_blank\">". textDecode($item->SSN)."</a> "; Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041496 Share on other sites More sharing options...
MyMammothTech Posted April 14, 2010 Author Share Posted April 14, 2010 Ok I am trying to do the same thing in another location but I can not find where to make the change. I have attached the two files I am thinking the change needs to be made along with an image of the column that I am wanting to apply the link to. The MySQL Table is BIOS and the Field is SSN. [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041566 Share on other sites More sharing options...
MyMammothTech Posted April 14, 2010 Author Share Posted April 14, 2010 Oh ya and here is the link that is used http://localhost/ocsreports/index.php?lareq=All+Computers There is a column on the same page that has a link but it is internal. Here is the line of code. echo "<a href=\"machine.php?systemid=".urlencode($item["h.id"])."\" target=\"_new\" onmouseout=\"this.style.color = 'blue';\" onmouseover=\"this.style.color = '#ff0000';\">"; Link to comment https://forums.phpfreaks.com/topic/198480-apache-mysql-php-need-link-to-open-in-a-new-tab/#findComment-1041574 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.