Page 1 of 1

php link

Posted: Mon Sep 15, 2003 3:57 am
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

Posted: Mon Sep 15, 2003 4:16 am
by JayBird
easy peasy

Code: Select all

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