I would like to set values on an url like this:
<a href='http://$data_url/viewyournote.php?chapter='$name_of_chapter'¬e='$id_note'&user='$username'>
Then be able to grab then from the recieving page.
Right now all im getting is this when clicked:
http://localhost/readnotes/viewyournote.php?chapter=
I don’t how you embed your link in your code, but if it is outside of
<?php ?>tags, then you have to do:if it is inside these tags, you can also do:
You can get these values on the recieveing page with
$_GET['variable_name_here'], e.g.$_GET['chapter'].