Re: [PHP] Display character 'x' times - Solved

2002-11-19 Thread Tjoumaidis Tasos
Great, That's exactly what i was looking for, thx to the other guys as well and sorry for not mentioning the whole problem which was that i wanted to pass the value to a variable. Steel wrote: Hi Tjoumaidis, Tuesday, November 19, 2002, 1:30:39 PM, I've got: TT> Hello to everybody, TT> I just

Re: [PHP] Display character 'x' times

2002-11-19 Thread Steel
Hi Tjoumaidis, Tuesday, November 19, 2002, 1:30:39 PM, I've got: TT> Hello to everybody, TT> I just want to display a character like D x times like DDD where x is a TT> $variable i get from the database i cannot make it work like it is on TT> perl (i don't even know if it is working the same w

Re: [PHP] Display character 'x' times

2002-11-19 Thread Neil Freeman
str_repeat () Tjoumaidis Tasos wrote: ** This Message Was Virus Checked With : SAVI 3.61 September 2002 Last Updated 15th November 2002 ** Hello t

Re: [PHP] Display character 'x' times

2002-11-19 Thread Khalid El-Kary
hi, $numtimes=400; for ($i=1;$i<=400;$i++) { echo 'd'; } ---Or--- $numtimes=400; for ($i=1;$i<=400;$i++) echo 'd'; -Or $numtimes=400; for ($i=1;$i<=400;$i++) {?>d _ Tired of spam? Get advanced junk mail protection wit

[PHP] Display character 'x' times

2002-11-19 Thread Tjoumaidis Tasos
Hello to everybody, I just want to display a character like D x times like DDD where x is a $variable i get from the database i cannot make it work like it is on perl (i don't even know if it is working the same way) and i can't find a reference in the manual on php.net, maybe it's a silly ques