Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Post
  • Reply
beerinator
Feb 21, 2003

fletcher posted:

http://code.google.com/apis/chart/

I used this for a project recently and absolutely loved it. Let me know if you have any questions about it.

Normally I wouldn't recommend anything flash based in a php thread, but these graphs are waaay too sweet to pass over if someone is doing something in php that will need charts.

http://www.maani.us/charts/index.php?menu=Gallery

Super easy to configure (as easy or easier than google charts), they're free to use, but they cost 45 bucks to remove the "click on graph go to php/swf charts site". Well worth the money and the effort to get them set up if you are working on a professional project.

When I got them working on one of my projects, my bosses eyes lit up.

Adbot
ADBOT LOVES YOU

beerinator
Feb 21, 2003

dagard posted:

Is there any good reason why implode() has to take an array? IE, why this:

code:
$whatever = implode("|", "A", "B", "C", "D");
won't work, but put #s 2-5 inside of array(), it's fine? Just backwards compatibility?

The reason that won't work is that in your example you are giving implode 5 parameters when it is expecting two.

  • 1
  • 2
  • 3
  • 4
  • 5
  • Post
  • Reply