Hi,
I have a PHP page (page 1) with a textarea on it, which is saved to a database. I also have a validation page (page 2) that has the same value as the textarea posted to it, which it needs to compare with the database value.
Unfortunately, when I save the value using page 1, it doesn't match the value posted to page 2. The curious thing is that when I save the same value in the same field using phpMyAdmin, the match works perfectly.
So, can anyone tell me what difference there could be in saving a textarea on a PHP page vs saving a textarea in phpMyAdmin? I've tried using the form tag with and without enctype="multipart/form-data", but neither works.
The data I'm trying to save is:
Code:
------ LICENSE FILE DATA -------
U5U65106eL4dZIJzjqbzpuxB7/L7KC/Z
1QlZQyEkfcBYLH2HKRzfvGlnRWJ+Qjyb
fu5CfVfTadaxnNGVdnzsSNsi8IzHVQDO
P/B7H52KtI1i9Jcf3x6IHbD73H9Rld2X
vJqBBo+zlJszygJsxgnVs0FkQ2s4s6hO
852AnRaQ5QT/EE58OOECWMm6SJzPQ6L9
5h3+GN8UDelBFyK6oVkr/cTnM5emrIST
H0mqTEI1Q3My2dBIEY7RltSpfcDiXeVZ
/s4BVsoKSb5m8sDJtvSUbhga7S1liGuk
cWJHDhmxhw/eQPMbYADSde+LaV/aZSo7
03cVnM96mxvqL0ZybttJRsPE+JFhE+wS
4BekkyHlEZHW2B0D/IlTRg4g52hTeizY
eU7SQUDqhTm1yhOXHo0ftnIYjZYkc3ph
w5jN/85bKDrvzjxjO0b29F3M4+ZvS8/5
6x0D52pPUwuf0jkv9yKpPCmkzo/XGi+t
LotKoEF9zaNM/IIaJrzyUECQXbuNZAXo
A+qORwyzVGQxEJI5MTe8hUHYrtmGCOSQ
rMjzxEKtzHrL9vX9c+Q7UaM7TNcDYJcy
skvmZf6WAmtqyKZxRkaoLTfGXe82mlb6
QTPFrixn1gBBx7eQtZXS7I1AOr97jKYf
u7xy6V11biKPe7z6TdOFfUn2BxQ5T1Nv
lVKTS7ff8mVgdYtC5thyA7rkivIb15Ku
kMYDj9PciDtmNWp4uA2NL1XLFB9c4qgL
hhRKRhYFK70n4CyupfSLSDyDRksHdPlg
lhLBT5EJ5jzhCZmUdZ123d2t
--------------------------------
And I'm using a normal SQL update statement to save it.
Debbie