BewareOfButtlice Posted June 13, 2016 Report Posted June 13, 2016 Hello. So i'm working on a custom pilot center using Action.php to avoid the java scripts and junk from my current theme. Anyway, im setting up the pages, for example, my flight bids. Theres the following code in there: <td><a href="<?php echo url('/pireps/filepirep/'.$bid->bidid);?>">File PIREP</a><br /> When i have http://localhost/site/action.php/schedules/bids open and you click on "File PIREP" it takes me back to Index.php. It needs to go to action.php. How would i change the above code to go to action.php rather than "URL" which goes to Index? Quote
web541 Posted June 13, 2016 Report Posted June 13, 2016 (edited) <td><a href="<?php echo actionurl('/pireps/filepirep/'.$bid->bidid);?>">File PIREP</a><br /> Edited June 13, 2016 by web541 Quote
BewareOfButtlice Posted June 13, 2016 Author Report Posted June 13, 2016 something so simple.... THANKS! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.