cip6791 Posted July 20, 2008 Share Posted July 20, 2008 $result = mysql_query("SELECT * FROM xzclf_cats WHERE catname LIKE 'A%'"); $row = mysql_fetch_array($result) or die(mysql_error()); while($row = mysql_fetch_array($result)){ echo $row['catname']; echo "<br />"; } echo "Hello!"; ?> I am using the code above to get the catnames that start with the letter A. And it is not displaying anything. the Hello! echo is displaying. Can anybody give me a hand? Thank you. Link to comment https://forums.phpfreaks.com/topic/115687-php-like/ Share on other sites More sharing options...
JasonLewis Posted July 20, 2008 Share Posted July 20, 2008 try this: $result = mysql_query("SELECT * FROM `xzclf_cats` WHERE upper(left(`catname`,1))='A'"); $row = mysql_fetch_array($result) or die(mysql_error()); while($row = mysql_fetch_array($result)){ echo $row['catname']; } Link to comment https://forums.phpfreaks.com/topic/115687-php-like/#findComment-594778 Share on other sites More sharing options...
Sulman Posted July 20, 2008 Share Posted July 20, 2008 Try using this: $result = mysql_query("SELECT * FROM xzclf_cats WHERE catname LIKE 'A%'"); while($row = mysql_fetch_assoc($result)){ echo $row['catname']; echo " "; } echo "Hello!"; ?> Link to comment https://forums.phpfreaks.com/topic/115687-php-like/#findComment-594790 Share on other sites More sharing options...
gabarab Posted July 20, 2008 Share Posted July 20, 2008 $result = mysql_query("SELECT * FROM xzclf_cats WHERE catname LIKE 'A%'"); for ($i=0;$i<mysql_num_rows($result);$i++) echo '<a href="edit.php?catrid='.mysql_result($result,$i,id).'">'.mysql_result($result,$i,name).'</a><br />'; ----- That's it... Work great for me. Link to comment https://forums.phpfreaks.com/topic/115687-php-like/#findComment-594796 Share on other sites More sharing options...
cip6791 Posted July 20, 2008 Author Share Posted July 20, 2008 thanks for your help. i ll try them out and let u know Link to comment https://forums.phpfreaks.com/topic/115687-php-like/#findComment-594830 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.