What does a question mark (?) stands for in ancho tag ?
What does a question mark (?) stands for in ancho tag ?
(OP)
Hi everyone,
I bumped into code regarding anchore tag:
<a href="index.php?del_task=<?php echo $row['id'] ?>">x</a>
What does the "?" stand for?
Thanks
I bumped into code regarding anchore tag:
<a href="index.php?del_task=<?php echo $row['id'] ?>">x</a>
What does the "?" stand for?
Thanks
RE: What does a question mark (?) stands for in ancho tag ?
Then the page can make use of those values being sent.
In your example index.php will be receiving a parameter or variable named "del_task" that has a value of whatever $row{'id'} is when that code is being parsed by the PHP interpreter.
----------------------------------
Phil AKA Vacunita
----------------------------------
OS-ception: Running Linux on a Virtual Machine in Windows which itself is running in a Virtual Machine on Mac OSx.
Web & Tech
RE: What does a question mark (?) stands for in ancho tag ?