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 Quote 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>'; ?> Quote 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> <? Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/88643-solved-echo-href/#findComment-453942 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.