Posted by no on 12/24/06 17:52
thecoolone wrote:
> I am trying to call a function from "a href" inside the same page.
> this is the code:
> echo "<br><br><a href=\"isearch($query)\">More results from
you must break a string to call a function.
try this:
echo "<br><br><a href=\"" . isearch($query) . "\">More results from
Mysite</a>";
Navigation:
[Reply to this message]
|