junkle Posted May 25, 2014 Share Posted May 25, 2014 Hi friends. I want to php code on how i can modify my retrieved database values from a particular table before echoing out. Please could you help me correct the code. Or if there is any better way of editing loop datas before printing out, please kindly drop the code for me. Thanks <?php $q = "SELECT * FROM threads WHERE catid='2'"; $get = $database->query($q) or die(mysql_error()); $row=mysql_fetch_row($get); $value=$row['0']['title']; $one='first value'; echo $value.$one; $value=$row['1']['name']; $two='second value'; echo $value.$two; $value=$row['2']['category']; $three='third value'; echo $value.$three; ?> please if there is any better way of editing loop values from mysql database before printing out, please kindly drop the code for me. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/288753-how-to-modifyedit-loop-values-from-mysql-database/ Share on other sites More sharing options...
Ch0cu3r Posted May 25, 2014 Share Posted May 25, 2014 if you query returns more than one record then you can use'd use a loop to iterate over the results, Example // loop over the records returned by the query while($row = mysql_fetch_assoc($result)) { $title = $row['title']; // get the title for current record $name = $row['name']; // get the name for current record $category = $row['category']; // get the category for current record echo "$title - $category - $name<br />"; } But what are wanting to edit the values to? Quote Link to comment https://forums.phpfreaks.com/topic/288753-how-to-modifyedit-loop-values-from-mysql-database/#findComment-1480779 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.