Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.
1 to 4 of 4
/* Fetch all the data from wp_posts table */
for ($i=0; $i< $nRows; $i++){
$row = mysql_fetch_array($qResult);
$row = str_replace("%26", "&", $row);
$rString .="&ID".$i."=".$i."&"."&post_title".$i."=".$row['post_title']."&"."&post_date".$i."
=".$row['post_date']."&"."&post_content".$i."=".$row['post_content']."&"."&
prepic".$i."=".$row['meta_value']."&";
}
/* Output the data as a string so Flash can read it */
echo $rString."&";
$row = str_replace("&", "%26", $row);
1 to 4 of 4