Search Results

1
vote

Is there any AIM API for PHP that would allow a user to set their status from a website?

A year or two back, I played around with using BlueTOC (formerly PhpTocAim) to work with AIM. It should support everything from sending / receiving messages to status updates and changing your prof …
1
vote

Track when user hits back button on the browser

The dojo toolkit has functionality to deal with this in javascript. I don't think there is any good way to handle it in pure PHP. Here is the docs page they have: …
0
votes

What is the best way to randomize an array’s order in PHP without using the shuffle() function?

Short Answer: PHP's array_rand() function Given that the use of the shuffle function is forbidden, I would use $keys = array_rand($myArray, count($myArray)) to return an array of the keys f …
0
votes

The best PHP editor for Vista

Dreamweaver does everything you listed, but isn't very lightweight. I like it because of the ability to have it write a lot of the simple HTML and CSS for me. It also has built in docs on javascrip …
0
votes

PHP property’s scope overridden by passing as reference?

Forgive me, but use a public variable and lose the need to "hack" access to a protected variable? What you are doing seems like a fairly bad idea... Perhaps if you told us more of what you were try …
1
vote

Is there a difference between apache module vs cgi (concerning security)?

From the PHP install.txt doc for PHP 5.2.6: Server modules provide significantly better performance and additional functionality compared to the CGI binary. …
0
votes

What is the best way to paginate results in php

Personally, I would use the query to do it. Obviously, that can change if your dealing with AJAX and such, but just doing a basic limit in the query and outputting the results is simple and efficie …
1
vote

Php Echo Concatenation

Update: You are missing a ')' on your second echo in the while loop. The code you posted looks entirely valid to me. Maybe there is an issue or missing semicolon elsewhere in your file? …