jmac2501 Posted January 30, 2008 Share Posted January 30, 2008 how would you echo this href with a varible in it? <a href="http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum=".$reo"> http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum=".$reo</a></p> Thanks Link to comment https://forums.phpfreaks.com/topic/88643-solved-echo-href/ Share on other sites More sharing options...
The Little Guy Posted January 30, 2008 Share Posted January 30, 2008 <?php echo '<a href="http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum="'.$reo.'"> http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum="'.$reo.'</a></p>'; ?> Link to comment https://forums.phpfreaks.com/topic/88643-solved-echo-href/#findComment-453916 Share on other sites More sharing options...
resago Posted January 30, 2008 Share Posted January 30, 2008 or ?> <a href="http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum="<?=$reo?>"> http://metrolistmls.com/cgi-bin/GetOneR.cfm?County=SA&iRow=0&nJL=7&MLSNum="<?=$reo?></a></p> <? Link to comment https://forums.phpfreaks.com/topic/88643-solved-echo-href/#findComment-453940 Share on other sites More sharing options...
jmac2501 Posted January 30, 2008 Author Share Posted January 30, 2008 Thanks Link to comment https://forums.phpfreaks.com/topic/88643-solved-echo-href/#findComment-453942 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.