|
Posted by Ric on 12/24/06 12:18
Michael R. Copeland schrieb:
> I have an application I've developed in C/C++, written as a console
> application. I need to port it to our Web page in such a manner that it
> operates from a simple menu and searches a large text file database.
> Currently, there are several text files being used together to identify
> the existence of relevant information, as well as allow the program to
> read "directly" (seek/read) the data records. (It's a sort of "indexed
> sequential" design.)
> I've started working with 2 PHP books, and it _looks_ as though PHP
> has the capability to do text file I/o in ways similar to my current
> program. The data files are quite large (10MB), which is why byte
> indexing is needed...as opposed to vast and slow sequential searching.
> Is PHP suitable for something like this? If so, are there any sites
> or NewsGroups I'd benefit from in this endeavor? TIA
If the c++ app works well, why redesign it in php, just add few
functions to your c++ code and make it a php extensions:
http://www.zend.com/apidoc/zend.creating.php
Navigation:
[Reply to this message]
|