Jump to content

[SOLVED] Printing a HyperLink including variables?


Mike088

Recommended Posts

Hey all, I am having trouble with printing a hyperlink which includes insertion of variables to complete the link. This is what I got... which is most likely wrong lol:

<?php 
print ("<a href=\"http://mysite.com/place/"$page"/blahblah"$text">Click Me</a>");
?>

 

I'm getting "Parse error: syntax error, unexpected T_PRINT"

 

Help appreciated :)

either remove the extra quotes or add concatenation operators :D no half-way

print ("<a href=\"http://mysite.com/place/$page/blahblah$text>Click Me</a>");

or

print ("<a href=\"http://mysite.com/place/".$page."/blahblah".$text.">Click Me</a>");

either remove the extra quotes or add concatenation operators :D no half-way

print ("<a href=\"http://mysite.com/place/$page/blahblah$text>Click Me</a>");

or

print ("<a href=\"http://mysite.com/place/".$page."/blahblah".$text.">Click Me</a>");

you left off the ending escaped quote:

print ("<a href=\"http://mysite.com/place/".$page."/blahblah".$text."\">Click Me</a>");

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.