The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
URL Link direct to View - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: API (https://forums.formtools.org/forumdisplay.php?fid=17) +--- Thread: URL Link direct to View (/showthread.php?tid=773) |
URL Link direct to View - vizzaroo - Jul 7th, 2010 Hi Ben & Co. I've setup a statistical page to show the stats of each view (i.e how many submission for each view). Example: Code: <?php What I'm trying to do is directly link the stat to direct the user to their view list. I.E Males Dogs 10 - (is linked) Female Dogs 15 -- (is linked) So when the user clicks on "10" it redirects them to the view list showing those 10 submissions. I understand in order for this to operate they would need to be already logged into their FT accounts, which they are. But after implementing this, once the user clicks on the stat it redirects them to the FORMS Page, rather than the specific list. Code: <a href="http://www.yourdomain.com/admin/forms/submissions.php?page=1&view=351" target="_blank"> Any ideas ? RE: URL Link direct to View - vizzaroo - Jul 7th, 2010 Nevermind, solved it myself. use the following code ' added the form_id into the link. Code: <a href="http://www.yourdomain/admin/forms/submissions.php?form_id=4&view=357"> RE: URL Link direct to View - vizzaroo - Jul 7th, 2010 oops, double post. |