Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have website and I need to build fast search engine for it. I have to search text in database or files (word, pdf) . I want too when I search a text the result the exact word or a text which have close writing, for example, I type "exemple" the result show "example" or "examples" even if this text is in database or in files(word, pdf). My website is in PHP and I don't work with any framework.
Can someone tell me a solution or give me a link tutorial about this.
Thanks
There are a bunch of solutions (e.g. do you want to index your files periodically of do you prefer ad hoc searches?).
Look up XML parsing and PDF parsing.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
currently i am working on a site for question answer site.
it is like this stackoverflow.anyone help me to add text editor on my site
any plugin for text-edtor
the data entered in text editor stored into database.
i am using PHP
Check out this link. Its the 2nd search result on google when searched "text editor api for websites"
This is just what you want.
I prefer QuillJS.
Here are some of its examples.
i think ckeditor is best, Please check following link.
http://ckeditor.com/demo
You can use code mirror, an open source text editor for web.
link : https://codemirror.net/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for some sort of (free) framework / script that generates code (or reads mysql metadata at runtime) to edit a mysql record that I can just insert into my existing website.
Something like: Give it credentials, tell it which table and how to get the ID (in this case $_GET['id']) and it spits out a HTML form and PHP code to select/update/insert it.
I'm sure something like this already exists but I can't find good google search terms.
A good key word for searching would be: scaffolding
http://www.phpscaffold.com/
http://www.amplescaffolder.com/2009/12/18/ample-scaffolder-everything-youve-ever-wanted-in-a-php-scaffolding-package/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
A while ago I built a PHP application for a local radio. They get requests from listeners and then put them into the application. The application then shows the DJ what the listener's requests are.
Now that all works fine but they have to build a music database by themselves which I use to search for music. My question is:
Is there an online music database that I can use cross scripting with soap/xml or something similar? I prefer XML but if there is a good database which gives the result in other format that won't be a problem.
I searched Google for this but I only find information how to download illegal mp3 files. I just need to find the music information like: album name, artist name and song title. Not the mp3/wma/etc file itself.
You may find something useable here http://en.wikipedia.org/wiki/List_of_online_music_databases ?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am working on creating a website which will allow users to update a table using Javascript.
What I am looking for is a way to allow the user to export the table as an image (jpg, png etc.) or a PDF once it has been modified.
If there is a similar thread or topic please let me know, I don't really know where to start here. If you can recommend background reading that would be great too.
This is not something that can really be done client side (without installing software on the clients, of course). You will need to generate this PDF server-side.
How you do that depends on the language and platform you are using.
There are a couple open source PDF librarys you can use;
SharPDF, PDFClown, iTextSharp just to name a few...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Basically i want a library for PHP that i can use to generate vector based graphic files like svg or pdf. it need to be able to output path and not pixel based results.
for example i want it to use like
generate_circle($radius)
etc
PHP bindings for cairo
It's not that hard to generate svg from php, here are some examples.
If you really want a library, there are probably many different options, SVGGraph and the ones pointed out here for example.
Google will help you find others I'm sure :)