is there a way to set _post variables without submitting a form?
something like
<?php
$_POST['var1']=123;
?>
<a href="something .php">link</a>
when user clicks on a link the something.php script can access
$_POST['var1']
Regards,
Vedran
something like
<?php
$_POST['var1']=123;
?>
<a href="something .php">link</a>
when user clicks on a link the something.php script can access
$_POST['var1']
Regards,
Vedran
Comment