ecabrera Posted May 6, 2012 Share Posted May 6, 2012 ok so im trying to make a news website and i want to be able to include links inside me headline like most news website they talk about the stuff and include some links along the way how would i manage to do that. I would put all my story in the Release textarea <form class="createheadline" action="createrelease.php" method="post" enctype="multipart/form-data"> <table> <tr> <td></td> <td><?php echo $msg;?></td> </tr> <tr> <td>Author:</td> <td><input type="text" name="author" size="30"/></td> </tr> <tr> <td>Date:</td> <td><input type="text" name="date" /></td> </tr> <tr> <td>Title:</td> <td><input type="text" name="title" size="30"/></td> </tr> <tr> <td>Main Picture</td> <td><input type="file" name="picture" /></td> </tr> <tr> <td>Release:</td> <td><textarea name="release" cols="75" rows="27"></textarea></td> </tr> <tr> <td></td> <td><input type="submit" name="submitbtn" /></td> </tr> </table> </form> Link to comment https://forums.phpfreaks.com/topic/262175-links/ Share on other sites More sharing options...
cpd Posted May 6, 2012 Share Posted May 6, 2012 If its for inserting a new entry than use BB Code. It is a form of mark-up language you can define yourself and is very simple. Would be ideal for creating links. Link to comment https://forums.phpfreaks.com/topic/262175-links/#findComment-1343573 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.