I'm trying to make an image into a link using PHP and HTML. The main idea is to grab user's images and screen names from Twitter, then make the image into a clickable link to their profile by building the URL and adding their screen name on the end. But I get a error messagearse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in C:\wamp\www\fyp\tweeter3.php on line 71.This is line 71 (it's part of a foreach loop):\[code\]<?php echo "<a href = "http://stackoverflow.com/questions/15489443/.$url"><img src = "http://stackoverflow.com/questions/15489443/.$userImage." class = ".$class."></a>"; ?>\[/code\]There's a syntax error in there I just can't pinpoint.These are my variables:\[code\]$userScreenName = $user -> screen_name;$userImage = $user -> profile_image_url;$class = "myImgClass";$url = "https://twitter.com/".$userScreenName;\[/code\]Can you spot the error?