<?php
 $total=3;
 echo ' 
<div class="idsdiv"><a href="profile.php?id=$total">.$total.</a><div>  ';
 ?>

i want to appear $total variable number in the link.why is this script not working?

link|improve this question

47% accept rate
Are you sure you don't have any other problem in your script? what is the problem, show us what you are getting – Ibu May 13 '11 at 4:07
In addition to the existing answers: read up on heredoc. That does simplify handling such cases (it's just three lines). – mario May 13 '11 at 5:33
feedback

7 Answers

Enclose the whole string with double quotes to embed variables inside:

echo "<div class=\"idsdiv\"><a href=\"profile.php?id=$total\">$total</a><div>";
link|improve this answer
feedback

You need to use double quotes around your HTML and single quotes around your attributes or do this...

echo '<div class="idsdiv"><a href="profile.php?id=' . $total .'">' . $total . '</a><div>  ';

PHP doesn't process variable names in strings enclosed in single quotes.

link|improve this answer
feedback
<?php
 $total=3;
 echo '<div class="idsdiv"><a href="profile.php?id=',$total,'">',$total,'</a><div>';
 ?>

Look at the string section of php.net (http://php.net/string) they talk about how to use each of the types. One of quote being the ' where nothing is parsed.

link|improve this answer
feedback
<?php  $total=3;  
echo "<div class=\"idsdiv\"><a href=\"profile.php?id=$total\">$total</a><div> ";  

?> 

you had errors with your quotes

link|improve this answer
Wrong quotation marks. – zerkms May 13 '11 at 3:54
@Sam Dufel: double fault )) – zerkms May 13 '11 at 3:56
yeah sorry i press tab then space then it auto matically submitted my answer – Ibu May 13 '11 at 3:57
@zerkms: I just wanted to make it readable :/ – Sam Dufel May 13 '11 at 4:00
feedback

You can print HTML without printing it, like so:

<?php
  $total = 3;
?>

<div class="idsdiv"><a href="profile.php?id=<?php echo $total; ?>"><?php echo $total; ?></a></div>

When I still did PHP, I found it much easier to manage than escaping tons of quotes and things like that.

You can even do it inside of an if block too:

<?php
  if ($foo == 'bar') {
?>

  <div>Foo is bar</div>

<?php
  }
?>
link|improve this answer
feedback

The method I like is

<?php  
     $total=3;  
     echo "<div class='idsdiv'><a href='profile.php?id={$total}'>{$total}</a><div>";  
?>

It is my method, but there are plenty of ways to do it. Maybe even too many. If you want more information you can always refer to the documentation.

link|improve this answer
feedback
<?php
  $total=3;
  echo '<div class="idsdiv"><a href="profile.php?id=$total">'.$total.'</a><div>';
?>

You're quote are missing before and after the $total

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.