[PHP] String Question

2004-05-02 Thread Dave Carrera
Hi List, How would I show 100 chars after finding the first instance of a searched word in a string. So I have a string of which I search for the first instance of hello and display from there 100 more chars. My output word then be something like: hello and show the next 100 chars... Thank

Re: [PHP] String Question

2004-05-02 Thread John W. Holmes
Dave Carrera wrote: How would I show 100 chars after finding the first instance of a searched word in a string. $start = strpos('hello',$str); $hundredchars = substr($str,$start,100); -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/ php|architect: The Magazine for

[PHP] string question

2003-06-11 Thread Mukta Telang
Hi, if a string is: $x=A.B. XYZ; and if I post it as a hidden form control and echo $_POST['x'] then I get: A.B. and not A.B. XYZ ! What should I do? Mukta -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] string question

2003-06-11 Thread John W. Holmes
if a string is: $x=A.B. XYZ; and if I post it as a hidden form control and echo $_POST['x'] then I get: A.B. and not A.B. XYZ ! What should I do? Learn HTML. Use quotes around your attribute values: input type=hidden name=foo value=A.B. XYZ ---John W. Holmes... Amazon

Re: [PHP] string question

2003-06-11 Thread Chris Hayes
At 16:42 11-6-03, you wrote: if a string is: $x=A.B. XYZ; and if I post it as a hidden form control and echo $_POST['x'] then I get: A.B. and not A.B. XYZ ! What should I do? how do you assign the value to the hidden form element? -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] string question

2003-06-11 Thread Brian V Bonini
On Wed, 2003-06-11 at 10:42, Mukta Telang wrote: Hi, if a string is: $x=A.B. XYZ; and if I post it as a hidden form control and echo $_POST['x'] then I get: A.B. and not A.B. XYZ ! What should I do? Mukta $x = 'A.B. XYZ'; -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] string question

2003-06-11 Thread Leif K-Brooks
Put quotes around the value attribute of your input tag, for example input type=hidden name=x value=A.B. XYZ / Mukta Telang wrote: Hi, if a string is: $x=A.B. XYZ; and if I post it as a hidden form control and echo $_POST['x'] then I get: A.B. and not A.B. XYZ ! What should I

RE: [PHP] String Question

2002-08-01 Thread Tim Ward
or ... while($new = substr($old, $i++ * $strlen, $strlen)) $array[] = $new; Tim Ward www.chessish.com -Original Message- From: Richard Baskett [mailto:[EMAIL PROTECTED]] Sent: 31 July 2002 20:47 To: Randy Johnson; PHP General Subject: Re: [PHP] String Question

[PHP] String Question

2002-07-31 Thread Randy Johnson
Hello, I would like to be able to do the following but have not figured out a way to handle it $string=abcdefghijklmnopqrstuvwxz; I would like to divde the above string into separate strings 8 charactes long , example $string1=abcdefgh $string2=ijklmnop $string3=qrstuvwx $string4=yz if the

Re: [PHP] String Question

2002-07-31 Thread Martin Clifford
Give this a whirl: ?php $string = abcdefghijklmnopqrstuvwxyz; $len = strlen($string) // in this case, 26 for($i=0; $i $len; $i+8) { $str_array[] = substr($string, $i, 8); } for($i=0; $i count($str_array); $i++) { echo $str_array[$i] . br\n; } ? I haven't tested it, but in theory it

Re: [PHP] String Question

2002-07-31 Thread Richard Baskett
, tolerate the unpleasant, cope with the unexpected, and smile through the unbearable. - Moshe Waldoks From: Randy Johnson [EMAIL PROTECTED] Date: Wed, 31 Jul 2002 15:26:15 -0400 To: [EMAIL PROTECTED] Subject: [PHP] String Question Hello, I would like to be able to do the following but have

Re: [PHP] String Question

2002-07-31 Thread J.F.Kishor
Hi Randy, Just copy the following code and execute it, it works as you require, tested works fine. ? $string=abcdefghijklmnopqrstuvwxyz; $length = strlen($string); // Finds the length of the string $octFull = round($length/8);// splits the length and finds how many

Re: [PHP] string question

2001-02-23 Thread Philip Olson
Use number_format() : http://www.php.net/manual/en/function.number-format.php echo number_format($number); Other options exist with this function, it's pretty useful. Regards Philip Olson http://www.cornado.com/ On Fri, 23 Feb 2001 [EMAIL PROTECTED] wrote: I have a string that

RE: [PHP] string question

2001-02-23 Thread PHPBeginner.com
To: [EMAIL PROTECTED] Subject: [PHP] string question I have a string that contains a number such as: $string = '12345' I want that to read 12,345 though. Is there any way in which I can insert a comma in there in the correct places? -Matt -- PHP General Mailing List (http://www.php.net