Re: [PHP-DB] Data not fetching in the textfield.

2007-09-27 Thread OKi98

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

 


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Data not fetching in the textfield.

2007-09-26 Thread Niel Archer
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

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Data not fetching in the textfield.

2007-09-26 Thread Chris





echo("");


Change to

echo"htmlspecialchars($rows[0], ENT_QUOTES) . "\">";


So html characters like > and < won't be interpreted by the browser.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Data not fetching in the textfield.

2007-09-26 Thread Instruct ICC

> Date: Wed, 26 Sep 2007 09:33:40 -0700
> From: [EMAIL PROTECTED]
>   echo(" value=$rows[0]>");

If what you want rendered in html should have quotes like so:


Double quote the value like so:
echo("");


and escape $rows[0] in case it contains any double quotes thusly (or with some 
other escape function):

echo("");




_
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx

RE: [PHP-DB] Data not fetching in the textfield.

2007-09-26 Thread Naintara
Try replacing this:


echo '  ' ;


With this:

echo '  ' ; 


-Original Message-
From: Chris Carter [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 26, 2007 10:04 PM
To: php-db@lists.php.net
Subject: [PHP-DB] Data not fetching in the textfield.


I am trying to fetch data through this code:

My code:
for($i=0;$i' ;
echo '' ;
echo '  ' ;
echo '  Store
name:' ;
echo '  ' ;
echo '  ' ;
echo '' ;

The value option in the textfield is not fetching the data, neither is it
throwing errors. However the same code works perfectly as suggested by one
of expert Nabble users:

Nabble code:

for($i=0;$i");
}

Please help.

Chris
-- 
View this message in context:
http://www.nabble.com/Data-not-fetching-in-the-textfield.-tf4523451.html#a1
2904665
Sent from the Php - Database mailing list archive at Nabble.com.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php