Jump to content

[SOLVED] News System


sstangle73

Recommended Posts

i get the error

Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /homepages/27/d193007783/htdocs/stangle/index.php on line 100

 

line 100 is the 2nd echo

echo "$r['message']<HR color='#660000'>";

 

<?
if($logged_in){
?>						
<?

$db_host = "****";
$db_username = "****";
$db_password = "****";
$db_name = "****";

mysql_connect($db_host,$db_username,$db_password) or die(mysql_error());
mysql_select_db($db_name) or die(mysql_error());

$query = "SELECT name, subject, message, date
FROM news order by date DESC";
$result = mysql_query($query);
while($r=mysql_fetch_array($result)){
echo "$r['subject']<HR color='#660000'>";
echo "$r['message']<HR color='#660000'>";
echo "Posted By:";
echo "$r['name'] on $r['date']<br>";
}
?>
<?php
}
?>

Link to comment
https://forums.phpfreaks.com/topic/62987-solved-news-system/
Share on other sites

thanks guys now i get this

 

Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /homepages/27/d193007783/htdocs/stangle/index.php on line 103

103 is

}

line

$query = "SELECT name, subject, message, date
FROM news order by date DESC";
$result = mysql_query($query);
while($r=mysql_fetch_array($result)){
echo "".$r['subject']."<HR color='#660000'>";
echo "".$r['message']."<HR color='#660000'>";
echo "Posted By:";
echo "".$r['name']." on $r['date']<br>";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/62987-solved-news-system/#findComment-313985
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.