Search found 3 matches

by timmyc123
Sun Jun 27, 2010 4:01 pm
Forum: PHP - Code
Topic: PHP Array, each result into the next cell of a table
Replies: 5
Views: 340

Re: PHP Array, each result into the next cell of a table

What MySQL database am I querying? This is a php script that parses a NWS weather xml feed.
by timmyc123
Sun Jun 27, 2010 2:16 pm
Forum: PHP - Code
Topic: PHP Array, each result into the next cell of a table
Replies: 5
Views: 340

Re: PHP Array, each result into the next cell of a table

Putting a regular table in causes it to create a new table for each day that comes out of the array. I need each value to be in a new cell to the right of the previous.
by timmyc123
Fri Jun 25, 2010 10:04 pm
Forum: PHP - Code
Topic: PHP Array, each result into the next cell of a table
Replies: 5
Views: 340

PHP Array, each result into the next cell of a table

Hello - I have some weather code that creates a forecast from the NWS XML feed. My problem is that I can't get each individual result into a different table cell. Here is the code: <?php require_once("pxweather3.class.php"); $w = new Weather3(); $w->load(); foreach($w->getDaycasts() as $da...