Ross wrote:
I want call the current page and set a variable (or call a function)

< a href="index.php?variable=bananas" -this works but means I have to change it for every page name

I have tried

<a href="<? $PHP_SELF(); ?>">this is the link</a>

What's wrong with

<a href="<?php print($_SERVER['PHP_SELF']); ?>?name=val">link</a>

By the way, you can't trust PHP_SELF, so you might want to escape or validate that variable. See [1], mentioned recently by Chris Shiflett on this list.

[1] http://blog.phpdoc.info/archives/13-XSS-Woes.html
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/

If you find my advice useful, please consider donating to a poor
student! You can choose whatever amount you think my advice was
worth to you. http://tinyurl.com/7oa5s

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to