<?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?
i want to appear $total variable number in the link.why is this script not working?
| |||||
feedback
|
|
Enclose the whole string with double quotes to embed variables inside:
| |||
|
feedback
|
|
You need to use double quotes around your HTML and single quotes around your attributes or do this...
PHP doesn't process variable names in strings enclosed in single quotes. | |||
|
feedback
|
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. | |||
|
feedback
|
you had errors with your quotes | |||||||||
feedback
|
|
You can print HTML without printing it, like so:
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
| |||
|
feedback
|
|
The method I like is
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. | |||
|
feedback
|
You're quote are missing before and after the $total | |||
|
feedback
|