Jump to content

[SOLVED] News Section Help


flyersun

Recommended Posts

Hi

 

I'm trying to create a news section for a website.. I've hit a problem though. On the main news page I want only the first part of the news item to be shown and then a link to the full story.

 

Does anyone know how I can achieve this?

 

(I'm not exactly a wiz with this stuff)

 

Thanks for any help!

 

 

Link to comment
Share on other sites

yes it is possible

 

Here is how to get a caption and push you in the right direction

 

<?php
include '../database/config.php';
$result = mysql_query("SELECT * FROM `News` ORDER BY `news_id` DESC Limit 5") or die(mysql_error());
while($row = mysql_fetch_array($result))
{
$id = $row['news_id'];
$titlenews = $row['News_title'];
$news = $row['News'];
$caption = substr($news, 0, 50).".....";
?>

Link to comment
Share on other sites

Do what adam said to create the shortened version of the news post.  As for the link to the rest of the news, create another file which will take the id of the news posts from the URL ($_GET['id'] for example) and then display the news post based on that id.

 

There's another shove in the right direction  ;D

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.