Does not link to outside web, please help
2 posts by 2 authors in: Forums > CMS Builder
Last Post: August 31, 2009 (RSS)
By (Deleted User) - August 31, 2009 - edited: August 31, 2009
Hi,
We have a listing where one field is the web site for the listing. For some reason, I can not make it link to the outside web site. Please help.
Here is a sample listing:
http://www.koshertravelinfo.com/minyan/minyan_item.php?Achai-Tmimin-Saranac-Synagogue-1
I want the site visitor to go to that web site when he clicks on the link next to Web Site.
Here is the code:
We have a listing where one field is the web site for the listing. For some reason, I can not make it link to the outside web site. Please help.
Here is a sample listing:
http://www.koshertravelinfo.com/minyan/minyan_item.php?Achai-Tmimin-Saranac-Synagogue-1
I want the site visitor to go to that web site when he clicks on the link next to Web Site.
Here is the code:
<!-- STEP2: Display Records (Paste this where you want your records to be listed) -->
<h1>Minyan - Detail Page Viewer</h1>
Record Number: <?php echo $minyanRecord['num'] ?><br/>
Minyan Name: <?php echo $minyanRecord['minyan_name'] ?><br/>
Address Line #1: <?php echo $minyanRecord['address1'] ?><br/>
Address Line #2 : <?php echo $minyanRecord['address2'] ?><br/>
City: <?php echo $minyanRecord['city'] ?><br/>
State / Province: <?php echo $minyanRecord['state'] ?><br/>
Zip/Postal Code : <?php echo $minyanRecord['zip'] ?><br/>
Country: <?php echo $minyanRecord['country'] ?><br/>
Telephone: <?php echo $minyanRecord['telephone'] ?><br/>
Nusach: <?php echo $minyanRecord['nusach'] ?><br/>
Web Site: <a href="<?php echo $minyanRecord['web_site'] ?>"><?php echo $minyanRecord['web_site'] ?></a><br/>
E-mail: <?php echo $minyanRecord['e_mail'] ?><br/>
Rabbi's Name: <?php echo $minyanRecord['rabbi_name'] ?><br/>
More Info: <?php echo $minyanRecord['more_info'] ?><br/>
Shacharit Sunday: <?php echo $minyanRecord['shacharit_sunday'] ?><br/>
Shacharit Mon & Thurs: <?php echo $minyanRecord['shacharit_mon_thurs'] ?><br/>
Shacharit T/W/F: <?php echo $minyanRecord['shacharit_t_w_f'] ?><br/>
Shacharit Rosh Chodesh: <?php echo $minyanRecord['shacharit_rosh_chodesh'] ?><br/>
Mincha Weekdays: <?php echo $minyanRecord['mincha_weekdays'] ?><br/>
Maariv Weekdays: <?php echo $minyanRecord['maariv_weekdays'] ?><br/>
Mincha Friday: <?php echo $minyanRecord['mincha_friday'] ?><br/>
Shacharit Shabbat: <?php echo $minyanRecord['shacharit_shabbat'] ?><br/>
Mincha Shabbat : <?php echo $minyanRecord['mincha_shabbat'] ?><br/>
Motzei Shabbat Maariv : <?php echo $minyanRecord['motzei_shabbat_maariv'] ?><br/>
<br/>
_link : <a href="<?php echo $minyanRecord['_link'] ?>"><?php echo $minyanRecord['_link'] ?></a><br/>
Re: [RapidWeb] Does not link to outside web, please help
By Chris - August 31, 2009
Hi RapidWeb,
You'll need an http:// in there if you want to link to another site. If all your records are without http://, you can just add it into your page:
I hope this helps! Please let us know if you have any questions or comments. :)
You'll need an http:// in there if you want to link to another site. If all your records are without http://, you can just add it into your page:
Web Site: <a href="http://<?php echo $minyanRecord['web_site'] ?>"><?php echo $minyanRecord['web_site'] ?></a><br/>
I hope this helps! Please let us know if you have any questions or comments. :)
All the best,
Chris
Chris