Date: 12/23/06 (PHP Community) Keywords: php, mysql, html, sql Hi everyone, I'm a bit confused with PHP While Loops. =/ ph_name | text | text area | save | So far, I'm only working on the first 2 columns, Placeholder and English Text. //Placeholder $query_ph = "SELECT ph_name from placeholder"; $result_ph = mysql_query($query_ph) or die('Query failed:'.mysql_error()); //English Text $query_en = "SELECT text from content WHERE lan_id=1"; $result_en = mysql_query($query_en) or die('Query failed:'.mysql_error()); ?>
How should I nest the loops? Thanks! (: x-posted to php_mysql Source: http://community.livejournal.com/php/525071.html
|