Home > Archive > PHP DB > September 2007 > Re: [PHP-DB] Data not fetching in the textfield.
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Re: [PHP-DB] Data not fetching in the textfield.
|
|
| Niel Archer 2007-09-26, 9:59 pm |
| Your variable value is not being inserted because you have used single
quotes for the echo, not double quotes as the nabble example does.
Special characters and variables are only interpreted in double quotes,
they are treated literally in single quotes.
--
Niel Archer
| |
|
| Niel Archer napsal(a):
> Your variable value is not being inserted because you have used single
> quotes for the echo, not double quotes as the nabble example does.
> Special characters and variables are only interpreted in double quotes,
> they are treated literally in single quotes.
>
> --
> Niel Archer
>
>
Yes, also "disabled" field is not even sent
<input name="storename" type="text" maxlength="35" id="storename" class="regForm" *disabled="disabled"* value=$rows[0]>
|
|
|
|
|