nblackwood Posted September 7, 2009 Share Posted September 7, 2009 I'm sure this is something simple i've overlooked, but I am trying to figure out how to post a user's non-sensitive information directly to a table on a profile page using php code, rather than having to save to a database then echo it. I know it can be done, just not sure how to do it. Using Dreamweaver CS4. By the way, I want them to be able to also directly edit the information in that table. Help is obliged. Quote Link to comment https://forums.phpfreaks.com/topic/173383-tables-in-phphtml-php/ Share on other sites More sharing options...
ignace Posted September 7, 2009 Share Posted September 7, 2009 From where do you get the data? A form? Quote Link to comment https://forums.phpfreaks.com/topic/173383-tables-in-phphtml-php/#findComment-913988 Share on other sites More sharing options...
nblackwood Posted September 7, 2009 Author Share Posted September 7, 2009 sorry, yes. a form on the same page the table is to be on. While I'm thinking about it, I also am trying to figure out md5 encryption. I know how to open the md5 function, but I'm stuck after that. Quote Link to comment https://forums.phpfreaks.com/topic/173383-tables-in-phphtml-php/#findComment-913990 Share on other sites More sharing options...
Mark Baker Posted September 7, 2009 Share Posted September 7, 2009 I also am trying to figure out md5 encryption. I know how to open the md5 function, but I'm stuck after that. $text = 'secret password'; $hash = md5($text); echo 'Hashed password = '.$hash; There's really not much to it. So what's the problem? Quote Link to comment https://forums.phpfreaks.com/topic/173383-tables-in-phphtml-php/#findComment-914031 Share on other sites More sharing options...
ignace Posted September 7, 2009 Share Posted September 7, 2009 How does that form looks like and how does it have to fit in the form? Quote Link to comment https://forums.phpfreaks.com/topic/173383-tables-in-phphtml-php/#findComment-914061 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.