Search found 4 matches
- Wed Nov 26, 2008 9:27 pm
- Forum: General Discussion
- Topic: PHP encryption
- Replies: 10
- Views: 715
Re: PHP encryption
Im certain mysql has a function to calculate a passwords md5 hash value and store that value instead of the text. a way to do it would be to use this function then in you form have some JavaScript validation to confirm the passwords are a match before inserting the data for calculation. when a user ...
- Wed Nov 26, 2008 9:19 pm
- Forum: PHP - Code
- Topic: FPDF with php and mysql
- Replies: 0
- Views: 224
FPDF with php and mysql
Hi Peeps, Just wondering how to extract data from mysql into this fpdf code: here is my php code: <?php $title = $_POST ['title']; $fName = $_POST['fName']; $sName = $_POST ['sName']; $address = $_POST ['address']; $suburb = $_POST ['suburb']; $state = $_POST ['state']; $pCode = $_POST ['pCode']; ...
- Wed Nov 26, 2008 8:34 pm
- Forum: PHP - Code
- Topic: dependent drop down boxes
- Replies: 3
- Views: 225
Re: dependent drop down boxes
Thanks for your reply, I have thought of that but i thought i would run into problems when i add the real data (lots of information). If for some reason this does not work is there a way to change the combo box value in the php code such as if combo value = 1 then change value = text as mentioned ab...
- Wed Nov 26, 2008 7:50 pm
- Forum: PHP - Code
- Topic: dependent drop down boxes
- Replies: 3
- Views: 225
dependent drop down boxes
Hi my name is Justin, I'm having trouble with my dependent drop down boxes. They currently work fine, however when i want to insert my data into mysql it returns the combo box value rather than the text. Making the boxes dependent on each other requires me to use numbers rather than the text i wish ...