Re: [PHP] Search in PhP

2003-07-30 Thread Pradeep D'souza
Option 1 : use Javascript { Lot of free scripts on the internet } Option 2 : Use an array filled with information Rgds, Pradeep - Original Message - From: "khuram noman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 30, 2003 3:21 PM Subject: [PHP] Search in PhP >

Re: [PHP] Search in PhP

2003-07-30 Thread Nicholas Robinson
Try running a exec() running a grep command on your DocumentRoot. something like 'grep -ril fred * would just produce the filenames containing fred or -ri would display the context. You could then produce links to the files from the resulting output. HTH On Wednesday 30 Jul 2003 10:51 am, khu