Re: [PHP] take links from url

2002-01-07 Thread Jimmy
Hi Alawi, I want to take string between table/table tags in put it in variable preg_match (|table([^/table]*)/table|i, $str, $match); $match[1] will contain the string between table/table -- Jimmy Fate shuffles the cards and we play with them -- PHP General

Re: [PHP] take links from url

2002-01-06 Thread Matt Moreton
need something to count how deep your nested if you have nested table containers. Regards Matt. - Original Message - From: Alawi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 06, 2002 7:47 AM Subject: [PHP] take links from url I want to take string between table/table

[PHP] take links from url

2002-01-05 Thread Alawi
I want to take string between table/table tags in put it in variable How can I do that ?