Jump to content

echo dynamic link


tomm098

Recommended Posts

Hey all I have a problem with echoing a PHP dynamic link. This is the link i need to echo. It works fine as a HTML link but as soon as i put it in the PHP echo code it stuffs up. I think it needs a different syntax or something.

 

<a href="userstats.php?User=<?php echo ($_COOKIE ['Username']) ?>"><?php echo ($_COOKIE['Username']) ?></a>

 

I must PHP echo it like so:

<?php echo "THE LINK ABOVE"

 

 

any help would be greatly appreciated.. thanks

 

 

 

Link to comment
Share on other sites

Please post a few lines before and after that line. The error could be in a previous PHP line, but the parser couldn't see that until it hit this line.

 

No, since the "echo" is terminated by the closing "?>" that line doesn't need a ";"

 

Ken

Link to comment
Share on other sites

This is my entire code, but im fairly sure its the link that is the problem because it works fine until i replace the first echo. I'm trying to replace the "($_COOKIE['Username']) after //user is logged in. with the first <a href link

 

<p><a href="userstats.php?User=<?php echo ($_COOKIE ['Username']) ?>"><?php echo ($_COOKIE['Username']) ?></a></p>
    <p>
    <?php
    if($_SESSION['Username'] || $_COOKIE['Username'])
{
//user is logged in
echo ($_COOKIE['Username'])."<br /"."<a href=\"Logout.php\">Logout</a>";

}
else
{
//user is not logged in
echo "<a href=\"/logreg/Login.php\">Login</a>"."<br />"."<a href=\"/logreg/Registration.php\">Register</a>";
}

?>

 

Link to comment
Share on other sites

http://www.php.net/manual/en/tokens.php

 

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home2/whatsong/public_html/test.php on line 246

 

makes me believe you tried:

 

<?php echo "<a href="userstats.php?User=<?php echo ($_COOKIE ['Username']) ?>"><?php echo ($_COOKIE['Username']) ?></a>" ?>

 

Edit: remove the space after $_COOKIE

Link to comment
Share on other sites

That can't be your entire script, since the error says it's occurring on line 246.

 

Put

<?php
echo '<pre>' . print_r($_COOKIE,true) . '</pre>';
?>

at the start of your script.  What is displayed?

 

Ken

Link to comment
Share on other sites

I dont think i have a script. but this is what was returned

 

Array

(

    [__utma] => 213566930.929732667496323600.1250559715.1273507737.1273513206.669

    [__utmb] => 213566930.12.10.1273513206

    [__utmc] => 213566930

    [__utmz] => 213566930.1272378641.588.9.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=the boat that rocked song

    [userId] => 59

    [username] => tomm098

    [_csuid] => 4a36424d10dbcd31

    [phpSESSID] => gcjcbqlbjlo8vmfjnueeqlgf17

    [user] => MM_Username

)

 

Link to comment
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.