Hello,
I have a link like below.
<?php echo '<a href="sbinfo.php?id=' . urlencode($row['id']) . '">' . $row['id'];?>
I am passing one value here. but i need to pass two value here. is it possible. if so how can i do it?
Anyone can help me pls?
pavelazad,
<?php echo '<a href="sbinfo.php?id=' . urlencode($row['id']) . '&id2='.urlencode($row['id2']).'">' . $row['id'];?>
Is that what you are talking about?