Hi people how are you all doing.
Well im currently trying to find a way to show a "Particular" post , (latest post for example) to show on an external script.
this is what i have, but im not really sure if this is the right way to do it:
PHP Code:
<?php
if(empty($_GET['id'])){
die();
}
$pid = stripslashes($_GET['id']);
$contents = file_get_contents('showpost.php?p='.$pid.'&thing=true');
$post = unserialize($contents);
echo '
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
<td class="tcat" width="100%"> Welcome to Quick VIEW POST(R) Where you can ONLY VIEW :D And not REPLY! :D</td>
</tr>
</table>
<table class="tborder" id="post" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="thead" id="currentPost2"></td>
</tr>
<tr>
<td class="alt2" style="padding:0px">
<table cellpadding="0" cellspacing="6" border="0" width="100%">
<tr>
<td class="alt2" nowrap="nowrap" valign="top" width="200"><div class="info"> <div class="bigusername"><a href="member.php?u='.$post['userid'].'">'.$post['username'].'</a></div></div><div align="center"><img src="'.$post['avatarurl'].'" ></div><div class="smallfont"><div class="info">'.$post['displayusertitle'].'</div>
<div class="info">Join Date:'.$post['joindate'].'</div>
<div class="info"> Posts:'.$post['posts'].' </div></div></td></div>
<td class="alt1" width=""> <div class="smallfont"> <img class="inlineimg" src="images/icons/icon1.gif" alt="Default" border="0" /> <strong>'.$post['title'].'</strong> </div>
<hr size="1" style="color:#F7F7F7; background-color:#F7F7F7" />
<div id="post_message_">
'.$post['message'].'
</div>
<div> __________________<br />
'.$post['signature'].'</div>
<div style="margin-top: 10px" align="right">
</div></td>
<td valign="top" nowrap="nowrap"></td>
</tr>
</table> </td>
</tr>
</table>
<div align="right"><a href="'.$post['replylink'].'">reply to post</a>
</div>
';
?>
of course the file would be called on like :
getpost.php?id=20233 and such
any help is greatly appreciated.
thank youall.