I'm writing a little analysis page which will help me hunt down bugs in an application. In essence it allows to visually compare actual data and log entries, plus perform a bit of analysis on the data.
Since this is for debugging only and since I will be deploying this on the live site I want it to have as little server load as possible...
Are there any free php/javascript libraries out there which would help in displaying an RSS feed as html?
...
I have a Zend Framework site that setups all routes in a file, routes.ini. The routes look like this:
routes.popular.route = popular/:type/:page/:sortOrder
routes.popular.defaults.controller = popular
routes.popular.defaults.action = index
routes.popular.defaults.type = images
routes.popular.defaults.sortOrder = alltime
routes.popular.d...
I'm planning to build a community-driven website with voting functionality similar to StackOverflow (or Digg etc..). I really like SO's voting system where your points are deducted for voting down someone and so on.
Anyway, is there any open-source module/component available that I can plug into my app directly without having to reinven...
How can I do a php and xhtml form that allows users to upload images and on submitting all the data is send to my e-mail?
...
i was working on a facebook like website.and im really impressed with the facebook's commentbox.the toggle stuff are really awesome.can someone help me get something like that.
please dont send me this link http://demos.9lessons.info/multislide.php this is the most famous link on internet but i dont think it is like facebook from any poi...
I have this format on links:
blah/link/11
where blah is the controller and link is a function inside it. But now I want to send a number in the querystring. In normal non-MVC way I would have done like this:
page.php?id=11
So what should I do for getting the eleven in my link function?
...
I'm about to potentially start work on a website, but the client has a requirement that the website should also be accessible from mobiles/cell phones. He hasn't mentioned which mobiles he wants to support in particular but I assume it would be smart phones like iphone, blackberry, android, etc.
My question is, how much work will this t...
I have a xml declaration in top of my page like this
echo "<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0">";
and ?> in the echo seems like php thinks it's a closing statement or something. Am I missing something or is there some other workaround this?
By the way the page is a view in my codeigniter project, if th...
Which file would I look in to add nofollow tags to my layered navigation?
...
This is kind of an extension of this question of mysql not in or value=0?
I have two databases one has the widget information and the other is the layout of those widgets according to the module. On the page I have lists to put these widget such as Header, Content, Sidebar, and Footer. There is also a list of widget that are not being u...
hello i have some problems with my php ajax script
i'm using PHP/mysql
i have a field in my accounts table that will save the time for the last request from a user, i will use that to kick the idle user out of the chat. and i will make a php function that will delete all the rows that its time field more than the time limit, but wher...
Hi All,
I might not have known what to search for to get this answer so please point me to the correct post if this has been dealt with already.
Now then, I have a little custom CMS and I want to ensure users don't re-submit their $_POST data by refreshing the page. So I've done something like this:
<?
//Start a session to hold v...
If I had PHP code in the database, could I "include" that somehow in PHP and execute it?
Well, sure I could write out a file with that content and just include that file, but maybe PHP has got something similar to eval() of JavaScript?
...
i was wondering why there is no $parent->function(); syntax in php, but instead we can use parent::function(); which looks like it's used inside a static class. Am i missing some php oop basics?
...
How do I get to see the output of a php compiler in notepad++ ? I see that there is a console output window in notepad++ but nothing gets displayed there.
...
i need to make charts (pie and bar) and working with php data.
the data is JSON encoded.
what are the best ways to generate charts. i am right now looking at Google Chart api. is there anything better (read: easier) than this?
...
I'm trying to learn Zend AMF but with Flash instead of Flex. I've seen Lee Brimelow's introduction tut, but are there any others out there that cover things more in depth?
Cheers,
Lee
...
I am needing to create a new xml file and write that to my server. So, I am looking for the best way to create a new xml file, write some base nodes to it, save it. Then open it again and write more data.
I have been using file_put_contents() to save the file. But, to create a new one and write some base nodes I am not sure of the be...
So basically I have these two arrays I want to merge...
array(1) {
["first"]=>
array(1) {
["second"]=>
array(0) {
}
}
}
array(1) {
["second"]=>
array(1) {
["third"]=>
array(0) {
}
}
}
And this is the result I'd like to achieve...
array(1) {
...