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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DigitalBuilder

  1. DigitalBuilder

    SQL Injection Prevention - Is this shooting for the heart?

    It's ideas to control SQL Injection at the root source: where its injected
  2. DigitalBuilder

    SQL Injection Prevention - Is this shooting for the heart?

    http://www.logic.school.nz/ <? function pstr($Name) { global $$Name; if (!empty($$Name)) { return str_replace("'","''",$$Name); } if (!empty($_GET[$Name])) { return str_replace("'","''",$_GET[$Name]); } elseif (!empty($_POST[$Name])) { return str_replace("'","''",$_POST[$Name]); } else { return...
  3. DigitalBuilder

    TZ script - interesting?

    I am interested in this. Have you compiled the TZ for each country?
  4. DigitalBuilder

    Most advanced Javascript menus

    What are the most advanced freeware and payware Javascript menus?
  5. DigitalBuilder

    PHP advancement for functions and code. Any further ideas?

    Anyone have further ideas? Here is some php ideas: http://www.digitalbuilder.co.nz/currently on the front page will move it later to http://www.digitalbuilder.co.nz/WebDesignTips_PHPCodingTips.asp e.g. function q($sql) { // for improved/speed queries trying these ideas from this diagram...
  6. DigitalBuilder

    Encyrpting ASP

    I have emailed them about this product. Have you used it? What did you notice with regarding the ASP obsufication facility or other areas of interest
  7. DigitalBuilder

    Encyrpting ASP

    To encrypt the source like Zend's safe source does so you can give people code at one price, or they can have the code they can edit for another.
  8. DigitalBuilder

    Encyrpting ASP

    I found leading tools to do it with PHP How do you do it with ASP? Can be it be made safe? it's for a project I want to put in PC World New Zealand
  9. DigitalBuilder

    700,000 developers lookout. Session Abstraction layer for ASP

    Layer 4 would be Session Translator Layer 3 would be 'Session Interpreter' Page/Session Insertion & Output with page/Session Layer 2 Would be original Page Layer 1 would be Original page/s includes Result: Level 3 Level 2 Level 1 TestL2.asp <% Session("PleaseGodWork")="Level 3<br>"...
  10. DigitalBuilder

    Regular expression to match http://anything.extension

    I might just do it with some string functions I decided.
  11. DigitalBuilder

    Regular expression to match http://anything.extension

    http://*.*.nz none of http://*.*.nz?noquery http://*.*.nz#nohash
  12. DigitalBuilder

    Question 2 - Adding dates together and comparing

    How to Add two dates together with PHP 7 Compare them [For scheduled scans.
  13. DigitalBuilder

    Regular expression to match http://anything.extension

    This is for what may be a large traffic site in New Zealand [Population 4 Million] Hello, I wanted a domain to match anything with a domain space i can specify I have 'http://[\w|\W]{1,}nz' But it doesn't cut off at the .nz 1] How do i make it cut off at the .nz 2] How can i make it return...
  14. DigitalBuilder

    Code Protection with ASP

    Is there a way other than com objects?

Part and Inventory Search

Back
Top