Re: [PHP] Need difficult help !

2002-11-15 Thread Ewout de Boer
You could try something like this: $verylongstring $data = ... // your cut function $verylongstring = substr($verylongstring, strln($data); regards, Ewout de Boer - Original Message - From: Hacook [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 15, 2002 11:39 AM

Re: [PHP] Need difficult help !

2002-11-15 Thread Jason Wong
On Friday 15 November 2002 18:39, Hacook wrote: Hi all, I have a very long charachter chain which is like that : Number*link*name*Number*link*name*Number*link*name*Number*link*name* I made a php script to cut it thanks to the * to make a list with a number, and the name hyperlinked to the

Re: [PHP] Need difficult help !

2002-11-15 Thread Lauri Jakku
Or you could use hash instead of string to store data. Hashes work basicly like arrays but you can use string as key/index value and assosiate it with another string. And if you like to give that hash ie. as parameter to a another php-script, one could use: $param =

Re: [PHP] Need difficult help !

2002-11-15 Thread Hacook
Thanks for all but i found a way to do it ! Regards Or you could use hash instead of string to store data. Hashes work basicly like arrays but you can use string as key/index value and assosiate it with another string. And if you like to give that hash ie. as parameter to a another

Re: [PHP] Need difficult help !

2002-11-15 Thread Ewout de Boer
does ? Thanks a lot, Hacook - Original Message - From: Ewout de Boer [EMAIL PROTECTED] To: Hacook [EMAIL PROTECTED] Cc: PHP General [EMAIL PROTECTED] Sent: Friday, November 15, 2002 11:59 AM Subject: Re: [PHP] Need difficult help ! You could try something like