Jump to content

Recommended Posts

Hi guys,

I've been experimenting with a CMS, and have learnt quite a bit on how to script one. But what I want to do now is write the script so that in the index page, only the title is displayed but then when you click on the title it links you to the whole article. Is there a way to do this.

 

function get_content($id = '') {

 

if($id !=""):

 

 

$id = mysql_real_escape_string($id);

$sql = "SELECT * FROM ppyfc_content WHERE id= '$id'";

$return = '<p><a href="index.php">Go back to Content</a></p>';

else:

$sql = "SELECT * FROM ppyfc_content ORDER BY id DESC";

endif;

 

$res = mysql_query($sql) or die(mysql_error());

 

if(mysql_num_rows($res) !=0):

while($row = mysql_fetch_assoc($res)){

 

echo '<h1><a href="index.php?id=' . $row['id'] . '">' . $row['title'] . '</a></h1>';

echo '<div id="result">' . $row['home'] . ' ' . $row['score'] . ' ' .  $row['away'] . '</div>';

echo '<div id="result">' . $row['home1'] . ' ' . $row['score1'] . ' ' . $row['away1'] . '</div>';

 

}

 

This is the code to get and display the content from the database atm.

 

Thanks lads/lasses.

Link to comment
https://forums.phpfreaks.com/topic/238968-displaying-cms-info/
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.