Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Bradley Stahl

If anyone is interested in some VERY good webhosting that has support for
PHP and MySQL, please take a look at the following link:

http://www.sturdyhosting.com/idevaffiliate/idevaffiliate.php?id=100

They offer domain names for $8.95 and also webhositng solutions for as low
as $2.95 per month.


I hope that some of you are interested and can join the greatest webhosting
company in the world!


On 10/4/06, Stut <[EMAIL PROTECTED]> wrote:


Brad Bonkoski wrote:
> [EMAIL PROTECTED] wrote:
>> Hello
>> how I could assign a textarea with a variable value?
>> Although I tried to achieve an allocation like a normal > it does not work so I have no success with textarea.
>>
>> The code looks like following fragment.
>>
>> $problem_val = mysqlclean($_SESSION, "problem_eb", 500, $connection);
>>
>> > cols="1" rows="1" name="problem_eb" value="> $problem_val?>">
>>
>>
>> Best regards, Joerg Kuehne
>>
>>
> There is no value attribute of textarea...to put text in there, you
> place it between the  tags.
> i.e.
>
>  cols="1" rows="1" name="problem_eb" > ?>

Also worth mentioning that you may run into problems if you don't use
htmlentities on $problem_val, like so...



-Stut

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




[PHP-DB] textarea value assignment

2006-10-04 Thread j . kuehne
Hi 

I will try it. Many thanks in any case. 

> [EMAIL PROTECTED] wrote:
> > Hello 
> >
> > how I could assign a textarea with a variable value?
> > Although I tried to achieve an allocation like a 
> > normal  >  
> > The code looks like following fragment.
> >
> > $problem_val = mysqlclean($_SESSION, "problem_eb", 500, $connection);
> >
> >  > cols="1" rows="1" name="problem_eb" value=""> > textarea>
> >
> >
> > Best regards, Joerg Kuehne
> >
> >   
> There is no value attribute of textarea...to put text in there, you 
> place it between the  tags.
> i.e.
> 
>  cols="1" rows="1" name="problem_eb" >
> -B
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

best regards, George

To: [EMAIL PROTECTED]
Cc: php-db@lists.php.net

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



Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Stut

Brad Bonkoski wrote:

[EMAIL PROTECTED] wrote:

Hello
how I could assign a textarea with a variable value?
Although I tried to achieve an allocation like a normal it does not work so I have no success with textarea.
 
The code looks like following fragment.


$problem_val = mysqlclean($_SESSION, "problem_eb", 500, $connection);

cols="1" rows="1" name="problem_eb" value="$problem_val?>">



Best regards, Joerg Kuehne

  
There is no value attribute of textarea...to put text in there, you 
place it between the  tags.

i.e.

cols="1" rows="1" name="problem_eb" >?>


Also worth mentioning that you may run into problems if you don't use 
htmlentities on $problem_val, like so...


cols="1" rows="1" name="problem_eb" >htmlentities($problem_val); ?>


-Stut

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



Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Brad Bonkoski

[EMAIL PROTECTED] wrote:
Hello 


how I could assign a textarea with a variable value?
Although I tried to achieve an allocation like a 
normal  
The code looks like following fragment.


$problem_val = mysqlclean($_SESSION, "problem_eb", 500, $connection);

cols="1" rows="1" name="problem_eb" value="">



Best regards, Joerg Kuehne

  
There is no value attribute of textarea...to put text in there, you 
place it between the  tags.

i.e.

cols="1" rows="1" name="problem_eb" >

-B

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



[PHP-DB] textarea value assignment

2006-10-04 Thread j . kuehne
Hello 

how I could assign a textarea with a variable value?
Although I tried to achieve an allocation like a 
normal 


Best regards, Joerg Kuehne