<?php if $row_rspick['c_pick' ] = 1 echo ?>
<a href="<?php echo $row_rspick['url']; ?>"><?php echo $row_rspick['title']; ?>
should be
if($row_rspick['c_pick' ] ==1)
{
?>
<a href="<?php echo $row_rspick['url']; ?>"><?php echo
$row_rspick['title']; ?></a>
<?php
}
?>
The problem is with your if statement
in php $var = 5 means $var is being assigned the value of 5
howerver if($var == 5) means if $var equals 5
that is what you were trying to do
change the "=" to "=="
BTW you forgot the closing </a> tag
HTH
GM