[PHP-DB] Re: searching through a string

2006-09-18 Thread Kae Verens
Ron Piggott (PHP) wrote: If $file_name includes the path /path/to/file/file_name.pdf is there anyway of searching from the right hand side to the left and getting the file name out the $file_name variable? The file name starts the character following the last / this should do it. $filename=pre

[PHP-DB] Re: Searching a name field

2003-11-06 Thread Chris Berlioz
Yes you have to break this up into fields that hold your Firstname, MI,Lastname. This has so many advantages, using PHP string function to query inside fields might be useful somewhere else, I wouldn't recommend it for use in a large DB. Divide and conquer! Espero este consejo te sirva, ese erro

[PHP-DB] Re: Searching DB and Printing Results

2003-01-02 Thread David Eisenhart
This may be of use: http://www.mysql.com/doc/en/Fulltext_Search.html D. "Mike Delorme" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > > > Hi, > > I have a table in DB Music that looks a little mike this: > > TABLE NAME > __

[PHP-DB] Re: Searching for Datagrid

2002-09-24 Thread John Lim
"Paolo Zani" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi All! > I'm searching for Datagrid component for php and mysql. Something like java > ones. > Does anyone knows one? > > Thanks > Paolo > > Have a look at http://phplens.com/ It's a commercial soft

[PHP-DB] Re: Searching...

2002-07-18 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > in ym search page, i construct a sql query from user input to search my > database, and i run this query to get totalresults. Then run another query > with a LIMIT 0, 30 ending for each page. So I'm running 2 mySQL queries per > page. My

[PHP-DB] Re: Searching within a Text document

2002-02-09 Thread Todd Williamsen
Here is the code I have tried... but no luck $kw has been found in the resume of $LastName, $FirstName http://madden.williamsen.net/recruiter/resumes/$filename\";>Resume "; } else { echo "The keyword $kw was not found in the resume $filename"; } } fclose($fd); ?>

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
PROTECTED]] Sent: Friday, February 08, 2002 1:51 PM To: 'DL Neil'; Todd Williamsen Cc: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Re: Searching Documents If "running" meant at the process level and not just installed, then word does not have to be running.COM creates the appr

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Shrock, Court
If "running" meant at the process level and not just installed, then word does not have to be running.COM creates the appropriate instances of whatever is requested via COM. But yes, Word does have to be installed. However, wonder what the wine project could afford this discussion? Maybe yo

Re: [PHP-DB] Re: Searching Documents

2002-02-08 Thread DL Neil
Todd, > Now, if I do COM with PHP, then does this need to be on a Windows > server? Currently it sits on a Linux box. I assume if you are setting up a dynamic connection to Word, Word will have to be running - which almost implies a Windows box. Whether the COM component/add-on to PHP (also?)

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
Neil [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 1:33 PM To: Shrock, Court; 'Todd Williamsen' Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Re: Searching Documents Court, Todd, et al > Actually, PHP does COM very wellsearch the PHP-WIN list about "COM" and

Re: [PHP-DB] Re: Searching Documents

2002-02-08 Thread DL Neil
Court, Todd, et al > Actually, PHP does COM very wellsearch the PHP-WIN list about "COM" and > "Word" and you should find some good hints and examples to get going. I > haven't accessed the keywords portion of a word document yet, but someone > wrote a spellcheck function that used the spell

Re: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
Well, This application would eventually land on either Linux or Windows box, it would be for internal use only, so it wouldn't get wacked too bad. I know IIS5 has a bunch of COM built-ins. The problem of going to like a text based documents is that this is for resume management and 99% of the r

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Shrock, Court
correct to my knowledge. I am not sure even running ASP on a linux server would allow you to open the word documents, as I think ASP uses COM to do the dirty work. of course, you could always do the world a favor and not use microsoft's proprietary file formats in any way. an open stand

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
Now, if I do COM with PHP, then does this need to be on a Windows server? Currently it sits on a Linux box. -Original Message- From: DL Neil [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:40 PM To: Todd Williamsen Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Re: Searching

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Shrock, Court
Actually, PHP does COM very wellsearch the PHP-WIN list about "COM" and "Word" and you should find some good hints and examples to get going. I haven't accessed the keywords portion of a word document yet, but someone wrote a spellcheck function that used the spellcheck built into Word using

RE: [PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
Yes, I was thinking COM/DCOM, but then does PHP able to do that? Or do I need to resort to ASP(Awful Scripting Pages)? -Original Message- From: DL Neil [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:40 PM To: Todd Williamsen Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Re

Re: [PHP-DB] Re: Searching Documents

2002-02-08 Thread DL Neil
Todd, > No one knows??? =or isn't telling? > hmm... I looked around on php.net couldn't find anything regarding this.. > would I need to do these searches in MS Word docs with ASP? =go ahead if you are aspidexterous... =the Word document format is proprietary information - ie not 'open'. So

[PHP-DB] Re: Searching Documents

2002-02-08 Thread Todd Williamsen
No one knows??? hmm... I looked around on php.net couldn't find anything regarding this.. would I need to do these searches in MS Word docs with ASP? "Todd Williamsen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I was wondering if there is a way to searc

[PHP-DB] Re: Searching a table

2001-09-05 Thread Jacob Singh
Hello, Devon, Try the methos outlines in this article: http://phpbuilder.com/columns/clay19990421.php3 The method is basically this: break up all your fields into one word chunks. insert into a search_table a chunk and it's corresponding ID of the row it came from. It won't take boo

[PHP-DB] Re: Searching a table

2001-09-05 Thread Marcus Tobias
Hi Devon! Take a look in the function reference to mysql functions of PHP. There are functions to connect to the mysql database and requesting datas with SQL queries. You need knowlege on SQL to use it. There are example too. bye Marcus "Devon" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL