AStrangerWCandy Posted September 15, 2009 Share Posted September 15, 2009 Don't need to worry about hiding URLs on links, but I'd like to hide them on some of my form buttons, is there a way to make where those forms redirect not appear on the status bar of IE? Quote Link to comment https://forums.phpfreaks.com/topic/174380-okay-so-im-almost-done-doing-small-things-how-do-i-hide-urls/ Share on other sites More sharing options...
MadTechie Posted September 15, 2009 Share Posted September 15, 2009 Why ? is the first thing that springs to mind, the second it why add this in at the end? i guess you could control posts from a main index page. Quote Link to comment https://forums.phpfreaks.com/topic/174380-okay-so-im-almost-done-doing-small-things-how-do-i-hide-urls/#findComment-919207 Share on other sites More sharing options...
AStrangerWCandy Posted September 15, 2009 Author Share Posted September 15, 2009 Sorry just going back now and doing all my security cleanup like addslashes on user input and whatnot and figured the user not being able to see the URLs would add a level of security. Quote Link to comment https://forums.phpfreaks.com/topic/174380-okay-so-im-almost-done-doing-small-things-how-do-i-hide-urls/#findComment-919218 Share on other sites More sharing options...
MadTechie Posted September 15, 2009 Share Posted September 15, 2009 Not really, obscurity is not security, if you want, you could post to one file and have that include the needed files ie instead of posting to user_edit.php you could post to postmanager.php?action=useredit and use something like the code below <?php switch($_GET['action']) { case "useredit": include "user_edit.php"; break; case "usersave": include "user_save.php"; break; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/174380-okay-so-im-almost-done-doing-small-things-how-do-i-hide-urls/#findComment-919223 Share on other sites More sharing options...
AStrangerWCandy Posted September 16, 2009 Author Share Posted September 16, 2009 Yeah I'm thinking I may use case to condense some things down. Quote Link to comment https://forums.phpfreaks.com/topic/174380-okay-so-im-almost-done-doing-small-things-how-do-i-hide-urls/#findComment-919235 Share on other sites More sharing options...
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.