1
vote
2answers
37 views
How can I pass “/” through GET in URI?
I want to pass an additional "/" parameter to the controller action. So I did this:
$par1 = urlencode('/');
$this->_redirect('/controller/action/par1/' . $par1);
But I get this error message:
…
0
votes
3answers
29 views
Select only newest records from table and make this FAST, how?
Good day, I have a question I'm struggling with a lot, hope somebody already found a clever solution to this (I use MySQL).
I have table like this:
Table `log`
----------
id
inserted
message
user_id
…
0
votes
0answers
29 views
Help with database design and quering rows
What's this database design and it is displaying three rows of id in names in products and three rows of prices, and three row of each field when I am looking for to display the name, variety and …
1
vote
3answers
27 views
Query works fine in phpmyadmin returns 0 rows when ran from php
I'm really stumped by this. Here is the php:
Update: I have escaped the inputs (before I did this a different way, but didn't know about mysql_real_escape_string). Also, I replace the double …
0
votes
1answer
13 views
City belongsThroughCountyTo Province association, how to simplify the code?
Tables:
Province hasMany County, County belongsTo Province, County hasMany City, City belongsTo County
So basically something like: City belongsThroughCountyTo Province
Situation:
In a search form …
0
votes
5answers
34 views
How do I get csv file to download on IE? Works on firefox…
I'm struggling with an odd error. I have a simple web app that grabs stuff from a DB then outputs it as a downloadable csv file. It works on firefox and chrome, but IE fails to recognize it as a csv …
1
vote
3answers
26 views
PDO: MySQL server has gone away
I have a script that does a lot of legwork nightly.
It uses a PDO prepared statement that executes in a loop.
The first few are running fine, but then I get to a point where they all fail with the …
1
vote
2answers
18 views
How do I get an image to display on a page when the path for the image is in a MySql database?
Here is the 'id' and (path) 'name' in the MySql table called "upload":
rec_id | name
--------+------------------------------------------------------
1 | C:\Apache Tomcat …
4
votes
1answer
31 views
Can a project built using a framework under BSD license be released as GPL?
I am working on a project named Rosepad which is my vision of an Issue Tracking system. I know many people may call it "yet another foo", but it fulfills the void which I had witnessed.
Now getting …
3
votes
5answers
44 views
remove a variable from a php session array
below is a php code that is used to add variables to a session.
<?php
session_start();
if(isset($_GET['name'])) {
$name = isset($_SESSION['name']) ? $_SESSION['name'] : …
0
votes
2answers
25 views
jQuery Css Class not set Corectly
I'm trying to implement a starring system akin gmail, being able to mark an item important by clicking on a graphic.
if($starred == 1){
$starred = '<img class="starred" …
0
votes
2answers
63 views
PHP advice please. (Kohana experience a plus)
I've been working with PHP for about a year, but I do it as a hobby. I dont have anybody I can go to as a teacher or a mentor to give me advice on what I may be doing completely wrong, or what I could …
0
votes
1answer
15 views
Zend_Cache - “Datas must be string or set automatic_serialization = true”
I am trying to cache an array with Zend_Cache like this:
$cache = Zend_Registry::get('cache');
// $data is an array
$cache->save($data, 'externalData');
And I am getting this error:
Message: …
0
votes
3answers
66 views
Question about including html page in PHP
Hi,
If I include an HTML page on a PHP page (say, index.php) with the following:
<?php
include ("../../forms/login/form.html");
?>
Then will form.php show up correctly in index.php? When I …
0
votes
3answers
40 views
MySQL AVG(COUNT(*) - Orders By day of week query?
This query has baffled me... I've searched the web work over a day now and I have tried numerous things.
I want to get the avg number of orders for every day of the week from my db. I can pull the …
