2
Good morning my dear, I’m new around here...
First of all, I want to point out that I have read the topics that exist in this forum and I could not solve my problem!
My problem is to send only the database id from one PHP page to another that will select through that id and display all database data related to the id sent. I want to do it through a link, and I’m not getting it.
<h2>
<font size="5">
<a href="mostrar.php" target="_blanck">
<?=$linha['titulo']?>
</a>
</font>
</h2>
The idea is to send the id through this line of code there.
You must use something like
href="mostrar.php?id=<?= $linha['id'] ?>"
.– Inkeliz
This line is my link, IE, it shows the description of the link and would have to send the id theoretically, however I can not show this my id on the page. <?=$line['title']? > would be the description of my link...
– Guilherme Luis
There is such a thing:
target="_blanck"
? Would not betarget="_blank"
?– igventurelli
Typo error buddy, other than that some help ?
– Guilherme Luis