php link

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
jamrop
Forum Commoner
Posts: 80
Joined: Fri May 16, 2003 5:38 pm

php link

Post by jamrop »

Is it possible to have alink that gives to values?

e.g.

Code: Select all

<?php
<a href='../account/delete.php?advert_id=$advert_id and check=$member_id'>Delete </a></td>\n";

?>
Many thanks
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post by JayBird »

easy peasy

Code: Select all

print "<a href='../account/delete.php?advert_id=$advert_id&check=$member_id'>Delete </a>";
Mark
Post Reply