Whenever running make, I’m receiving this error. Tried “brew install php”, tried compiling and installing from source. Any suggestions? Answer Had a similar issue, using make clean before make solved this error.
How can I make my Live Feed list update only on the active tab or update it when the tab becomes active again?
I have a Live Feed jQuery box which updates in every 10 seconds, and puts the sites latest comments on top. This is working fine: jQuery makes an Ajax request, calls a PHP, which returns new items or …
Web scraping in PHP
I’m looking for a way to make a small preview of another page from a URL given by the user in PHP. I’d like to retrieve only the title of the page, an image (like the logo of the website) and a bit of text or a description if it’s available. Is there any simple way to do this without
Call a REST API in PHP
Our client had given me a REST API to which I need to make a PHP call. But as a matter of fact, the documentation given with the API is very limited, so I don’t really know how to call the service. I’ve tried to Google it, but the only thing that came up was an already expired Yahoo! tutorial
Which should be the list of ignored words for the Naive Bayesian Classifier?
I am working with Naive Bayesian classifier over PHP (http://www.xhtml.net/php/PHPNaiveBayesianFilter) And there’s a list of words which can be ignored while training the system. Those words are not saved into the database and therefore not used for the classification. I would like to improve the system…
How to get JavaScript variable value in PHP
I want the value of JavaScript variable which i could access using PHP. I am using the code below but it doesn’t return value of that variable in PHP. // set global variable in javascript …
call an Oracle function that do an insert/update from PHP?
we have a function if we call it by using SELECT we get the error code ORA-14551 “Cannot preform a DML operation inside a query” how to run this function and get the results when we run it in SQL developer in this way: works with no errors and we need this function to be called inside PHP note: I
why could my website be ‘loading’ twice?
or at least that’s what pingdom says, and i think it’s a pretty reliable service, Notes: APACHE: php & mysql No iframes htaccess: #Gzip AddOutputFilterByType …
OpenCart Theme Editing
I have downloaded and installed OpenCart v1.5.2.1. Now I’m using the default template in there. I want to add some extra elements like side menu bar to that template. How can I achieve this? How can I add new elements to my current template according to my requirements? Answer you should check this link…
Parse JSON To Create SQL Insert Statements in PHP
I’m a newbie programmer trying to find my way in the world. I’ve got my hands on JSON data that I’m trying to parse out into SQL statements to populate multiple database tables. I would like to loop through each dimension of the array and pull out specific parts of it to create an INSERT sta…