actually, i try to read php file. i got some php codes from open source software like osCommerce n others..
i found some codes for greet customer, as a keyword that i want to search..
then, i keep all codes or keyword in 1 file - criteria.csv.. tha's ok, i dont need read by using csv format.. i like to read in a simple way in java..
java also can read this file,right.
process-
1-i read file.php line by line n pass
2-then, i need to check that php file match n have a keyword from criteria.csv file..
3-as a result, the found keyword will be display
************************************************** *******
my criteria.csv file look like,
criteriaID,criteriaName, criteriaType, criteriaDesc, criteriaScore
bookmarkdelete(), link personalization,explicit,function delete bookmark ,2
echo tep_customer_greeting( ),anthropomorhic,implicit,display welcome using function greeting customer,1
************************************************** *******
my fren told me to use column and rows with an array.. i juz want to scan for criteriaID only.. like bookmarkdelete() n echo tep_customer_greeting( ) do u have any suggestion..