Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Zeroanarchy

    multidimensional array, Sort column

    Thanks feherke for you contribution. I have tried the array_multisort as follows and the results were not as I expected. if (count(array_intersect($draw, $numbers)) >= 1) { $rs = array(($a_row['DrawNo']), join(" , ",array_intersect($draw, $numbers)), count(array_intersect($draw...
  2. Zeroanarchy

    multidimensional array, Sort column

    Okay I have tried numerous functional examples and have been at it for two days now. I seem to be having an issue sorting a column. Here is the output via print_r ------------------------------------------------------ Array ( [0] => A0034 [1] => 4 [2] => 1 ) Array ( [0] => A0035 [1] => 18 , 9 ...
  3. Zeroanarchy

    Convert Apache Regular Expression to Perl Regular Expression

    Hi I am a bit stuck and was wondering if someone might be able to help. I would normally work with apache but in this case I am working with IIS Ionic. The issue is the software I am using only excepts Perl Regular Expression and I can not understand why the following regular expression will...
  4. Zeroanarchy

    MySQL -- Cobol

    Thanks ingresman, I believe Cobol is sitting on a mainframe. I have heard of services that are available in PHP to request information from the Cobol system but have not heard of anyone who has attempted this method. example...
  5. Zeroanarchy

    MySQL -- Cobol

    Has anyone worked on developing a method of talking between Cobol and MySQL. I am currently working at a site that has a Cobol back end and the concept is to access this information via PHP for web purpose. I am gathering that services will have to be developed to ensure both sources of...
  6. Zeroanarchy

    htaccess help

    Thanks Billy I'll try over there. Cheers [afro]ZeroAnarchy Experience is a wonderful thing. It enables you to recognize a mistake when you make it again.
  7. Zeroanarchy

    htaccess help divert subdomain file to domain

    I hope this is the right forum, I am having real problems trying to divert one page to another in the htacess file. I am unable to make the divert happen on the page as it is part of a forum. I have tried a few different combinations but I can not seem to get it to work. I want to permanently...
  8. Zeroanarchy

    htaccess help

    I hope this is the right forum, I am having real problems trying to divert one page to another in the htacess file. I am unable to make the divert happen on the page as it is part of a forum. I have tried a few different combinations but I can not seem to get it to work. I want to permanently...
  9. Zeroanarchy

    remove <img ???

    Thanks jpadie that worked really well one last question. If the code was as follows <b>20.06.2008</b> <br> <b>Location: Sydney - West</b> <br> <b>Recruiter: Link Recruitment Group Pty Ltd</b> <br> Is there away of...
  10. Zeroanarchy

    remove <img ???

    Thanks jpadie for you help I'll give a go. Cheers [afro]ZeroAnarchy Experience is a wonderful thing. It enables you to recognize a mistake when you make it again.
  11. Zeroanarchy

    remove <img ???

    Hi was wondering if someone might be able to help, I have the following code $content = "<table><tr><td>This is a general description or some usual text that I want to display.</td><td><img src='http://www.test.com.au//images/logos/client_1100_200.gif' alt='Logo' width='50' height='50'...
  12. Zeroanarchy

    Web site structure best practice

    Thanks jpadie, Ws there a process or term used to describe this style of format? [afro]ZeroAnarchy Experience is a wonderful thing. It enables you to recognize a mistake when you make it again.
  13. Zeroanarchy

    Web site structure best practice

    Hi I was wondering if someone might be able to supply some advice. I have noticed over recent years that website structure has changed a bit. Years ago the technical layer and the presentation layer where the same layer. These days websites are presented in the following format. Database -->...
  14. Zeroanarchy

    Find Field in Functions

    Hi all, I am currently using the following method to determine if a table in being used in a list of functions. select referenced_owner, referenced_name, type, owner, name from all_dependencies where referenced_owner in ('Database1') and referenced_name in ('PRODUCT') order by name Does...
  15. Zeroanarchy

    tracking functions

    Thanks engineer2100 for your help. Little surprised oracle has not come up with a method to manage stored procedures and functions. In relation to the v$SQL and the V$SQLAREA, unfortunately both only cache the PL/SQL procedure/function. They don't hold any information relating to the last time...
  16. Zeroanarchy

    tracking functions

    is there a method one can use. For example a piece of code I can add in a function to track it's use. Or is there perhaps a program that is able to do the job? Thanks in advance. [afro]ZeroAnarchy Experience is a wonderful thing. It enables you to recognize a mistake when you make it again.
  17. Zeroanarchy

    tracking functions

    Thanks engineer2100 for your help. I have had a look at User_Source and I can not find any reference to a time or date value. Is there a method of determining the time and date of the last time the function ran in this table? Cheers zeroanarchy [afro]ZeroAnarchy Experience is a wonderful...
  18. Zeroanarchy

    tracking functions

    Hi, Wondering if there is any method available code or program to track the use of a oracle function. I currently have over 150 functions but can not work out (without a lot of manually checking) which ones are in use, the last time they where used and how often they get used. has anyone...
  19. Zeroanarchy

    Between Using Sysdate

    Thanks David, I tried that previously and found it not to work. The field is set as Date and values do exist in the last 200 days but nothing seems to appear. I have come up with a work around that required me to hardcode an excluded date and that seems to work just fine. Thanks again for...
  20. Zeroanarchy

    Between Using Sysdate

    Hi, Having problems trying to return any values using the following method, can anyone make any suggestions? The field value is set to date and the date is as follows "dd/mm/yyyy" SELECT T_RATES.TO_DATE FROM PRODUCTDB.T_RATES WHERE T_RATES.TO_DATE BETWEEN TO_CHAR(SYSDATE,'DD/MM/YYYY')...

Part and Inventory Search

Back
Top