General Programming Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingGeneral Programming Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old July 23rd, 2003, 06:39 PM
We Combust We Combust is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Posts: 2 We Combust User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to We Combust
DB String Search

Here is a function that i need to search through a database table "cartOptionsList" and each time its called i need to do 2 things. 1st match it with the current ID $optionID and than check if there is an astrik in that rows value * <--. If there is an astrik I want to use that as the return variable, if it is not i want to continue and just grab the 1st row in the table.

sounds confusing, its really not i just wish i could do it thank you ahead of time

<?php

function grabOption($optionID,$whichToGrab='optionName') {
$grabAstrik = MYSQL_QUERY("SELECT * FROM cartOptionsList WHERE optionName LIKE '%*%' AND optionID LIKE '$optionID'") or die (mysql_error());
if (mysql_num_rows($grabAstrik) == 0) {
$grabOption = MYSQL_QUERY("SELECT * FROM cartOptionsList WHERE optionID='$optionID' ORDER BY optionValue ASC LIMIT 1") or die (mysql_error());
while ($mysql=mysql_fetch_array($grabOption)) {
return "Yes";
return $mysql[$whichToGrab];
}
} else {
while ($mysql=mysql_fetch_array($grabAstrik)) {
if ($mysql[optionId] == $optionID) {
return "No";
return $mysql[$whichToGrab];
}
}
}
}
?>

Reply With Quote
  #2  
Old July 23rd, 2003, 08:12 PM
jpenn jpenn is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Washington, DC
Posts: 317 jpenn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 3 sec
Reputation Power: 7
No exactly sure what you are looking for, but maybe this:
Code:
SELECT SUBSTRING(column_name, -1) AS some_name_to_return_as

That assumes the asterik * is the last char in the value. If it was the first char, it would be SUBSTRING(column_name, 1). The, you can check for the asterik in the returned set, if it is there, do something, if it is not do something else with the remainder of the row.
__________________
~ Joe Penn

We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set?

Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you.




Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingGeneral Programming Help > DB String Search


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT