0
votes
7answers
52 views
How to avoid temporary variables in PHP when using an array returned from a function.
The use of $tmp below is pretty ugly. Is there a way to avoid it?
function test()
{
return array('a'=>1, 'b'=>2);
}
$tmp = test();
echo "This should be 2: ", $tmp['b'], …
2
votes
11answers
169 views
When are infinite loops are useful in PHP?
While reading through the great online PHP tutorials of Paul Hudson he said
Perhaps surprisingly, infinite loops
can sometimes be helpful in your
scripts. As infinite loops …
0
votes
6answers
42 views
How does eval function work in PHP ?
I am trying to figure out how does eval() function works in a simple way. I tried the following code but it doesn't work, instead it shows up a parse error.
<?php
$str = "e …
0
votes
4answers
40 views
Php script problem
I have a little problem with my script. When I try to run it I receive "Parse error: syntax error, unexpected T_STRING" as long as I have ' sign in my code. When I change all ' int …
0
votes
2answers
29 views
Check if final record?
I am using mysql_fetch_array and I want to check if it's the final record. How can I do this?
3
votes
2answers
44 views
How long the time funtion works in php
Is php date() and time() function works between the years 1901-2038. What function will I use for my long based projects. or I am wrong?
1
vote
4answers
52 views
Loop: Need help with loop and efficiency
Currently, I need help with my loop. In each div, I want it to show two sets of FirstName and LastName instead of just one set, but I don't know how can I do that because of the lo …
0
votes
4answers
30 views
php getting part of a url into a sting
This question is more of a "what is the best/easiest way to do this type of question. I would like to grab just the users id from a string such as <a href="/profile.php?rdc33273 …
0
votes
1answer
18 views
insert checkbox array with codeignitor
I am using codeignitor to insert into my mysql table the array of values
$data = array
(
'name' => $this->input->post('place_title'),
…
0
votes
5answers
60 views
AJAX code not able to call a .php file.
I am not able to call a file: "fillDropDown.php". Why this code is not working?
function MakeRequest()
{
var xmlHttp = getXMLHttp();
try
{
xmlHttp.onreadystatechange = …
0
votes
0answers
23 views
Return variable from stored procedure MySQL
How can I return a declared string like ( lastInsertId ) from my MySQL stored procedure and out? It's really annoying I can't return error messegts, complate messages and more out …
1
vote
1answer
37 views
Fallback route with Zend Framwork
Hello!
I'm having some difficulties while trying to understand the whole zend routing concept. My scenario is to have a fallback controller for my small cms app. I've already imple …
1
vote
4answers
23 views
storing temp data for shoping cart
I am doing shopping cart for my website
Storing purchase information in session
Storing purchase information in table.
Which is better solution? If I store it in table how and …
0
votes
4answers
83 views
Where do I have to use the & operator in PHP?
A few years ago I used to work with PHP and there've been many changes in PHP, especially on the OOP part.
Back then it was necessary to use the & operator at several places, …
0
votes
2answers
39 views
count element in array?
I have an Array like this (when I print_r). How can I sum all elements in this Array?
In this example, the sum is 0+1=1
Array ( [0] => Array ( [0] => 0 )
[1] => …
