Search Results

4
votes

Moving around key order in a multi-dimensional array

I think you need to still grab the keys in the second foreach. Try something like: foreach($arr as $k1 => $v1) { foreach ($v1 as $k2 => $v2) { $newArray[$k2][$k1] = $v2 …
4
votes

how do i write a javascript alert box to give a yes or no question and integrate with php calls? (repost)

You cannot use JavaScript to control the flow of PHP code in the way you've provided. The reason the record is always deleted is because the PHP interpreter kicks in as soon as it sees the &l …
7
votes

PHP: Best random numbers

I'm not sure that what you've done "improves" the randomness. From what I can understand you generate 100 random numbers and then randomly pick one of them. From what I can remember from m …
1
vote

Help with gmail message reading with php

According to this page (connecting to Gmail using Outlook Express), you have to use port 995 for POP3 access t …
0
votes

facebook ease effect w/ jquery

How about the slideDown() and slideUp() met …
1
vote

jQuery.get() method doesn’t want to work

Try using something like this, to make the call when the DOM is ready. <script type="text/javascript"> $(function() { $.get("http://www.walkscore.com/tile/show-tile.php?wsid=5 …
0
votes

Safe Dynamic Include

In general, I would not make any calls to include or require using unsanitized user input. It's just too risky. What if the user requests a file that's outside of the we …
1
vote

How can I show different content to website visitors from a specific country in PHP?

As yet another alternative, you can download one of the SQL databases here and use it to resolve an IP address to a location: …
1
vote

Are primitive data types in PHP passed by reference?

Yes, primitives are passed by value unless you explicitly define the function to pass by reference (by using an ampersand & in front of the parameter) or invoke the function with a …
3
votes

Optimize PHP function

You could use scandir() to list the files in the directory, instead of iterating through them one-by-one using r …
5
votes

Parse Error in PHP

You are missing the closing brace "}" after the statement: $self = $_SERVER['PHP_SELF']; It should be: <?php if ($_SERVER['REQUEST_METHOD'] != ' …
4
votes

PHP login return values.

Not sure exactly what your question is, but one problem is that you're returning from within this while loop: while($row = mysql_fetch_array($result)) { return 'gg'; …
10
votes

Will the save method in a Cakephp model class choose between creating and updating a record?

If you call save(), supplying a record with an existing id (or whatever is the primary key), it will update, otherwise it will create a new record. So in your case …
0
votes

PHP - Looping through $_FILES to check filetype

I think your if conditional is wrong. You need brackets around the first group of booleans that are OR'd, like this: if ( (($_FILES["image$i"]["type"] == "image/gif …
1
vote

require_once problem with templating

It may be because master.php is being included or required by another script file that is not in the same directory as header.php. That is, when you visi …

1 2 next
15 30 50 per page