hansman Posted May 21, 2006 Share Posted May 21, 2006 what type of field would i use to store " [a href=\"http://www.mydomain.com/\" target=\"_blank\"]http://www.mydomain.com/[/a] " in MySqland how would i out put it as a link in PHPthanks in advance for your help Quote Link to comment https://forums.phpfreaks.com/topic/10135-storing-hyperlinks-in-mysql/ Share on other sites More sharing options...
wildteen88 Posted May 21, 2006 Share Posted May 21, 2006 VARCHAR(255) will do for storing a hyperlink, it can store a maximun of 255 charactersnow to get the hyperlink out of the database I'd use this:[code]<?php//connect to database here$sql = "SELECT hyperlink_col FROM table_name";$result = mysql_query($sql);while($row = myql_fetch_array($result)){ echo "<a href=\"" . $row['hyperlink_col'] . \">Link</a>";}?>[/code]Note, make sure you change hyperlink_col with the actual column name that stores the hyperlink and change table_name with the actuall name of the table you use that stores the hyperlink column in. Quote Link to comment https://forums.phpfreaks.com/topic/10135-storing-hyperlinks-in-mysql/#findComment-37749 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.