I have a webpage that contains an article called http://www.mytest.com/article1.txt.
When someone loads this page they are actually loading this code.
Code: Select all
<?php
if ($_REQUEST['showComments'] == true){
echo '[include:/inc/header.php]';
}else{
echo '[include:/inc/regular.php]';
}
?>Code: Select all
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?showComments=true">Post/Read Comments</a>My delima is I'm is the link. I need the link they click to actually show
Code: Select all
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?keepThis=true&TB_iframe=true&height=650&width=980">Post/Read Comments</a>I hope this makes sense can anyone point me in the right direction?
Thanks in advance,
Josh