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 strongm 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. 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?
  15. DigitalBuilder

    Code Protection with ASP

    I tried the M$ program but apparently its reversible and doesn't seem to work with my code, reports errors as if it can't handle it 1] What options are there? 2] How safe are they? 3] Do any of them have licencing control? Currently considering for...
  16. DigitalBuilder

    What tools including Code Generators do you use?

    What tools including Code Generators do you use?
  17. DigitalBuilder

    Codecentric Case Generation for relationships with PHP/MySQL

    I am just considering migrating to PHP/MySQL as opposed to ASP/MDB. It has some advantages it seems, as well as more commonality which may be emerging: What I would like to know: do you know how, with PHP/MySQL to refer to relationships so I can go through the fields and figure out which target...
  18. DigitalBuilder

    ASP V PHP v ASP.NET V CF V JSP

    ASP V3 [Classic] -Server Loads may be greater because of trying to improve income to expensive server -Includes may be processed for the whole page rather than 'as needed' making it slower -Uploads can be done but may be limited -Image resizing may require pay or free components that may not be...
  19. DigitalBuilder

    MySQL&gt;PHP[4] DataCentric Code Generator

    http://www.creightonbrown.co.nz/FileStatsNo3.gif PHP may be starting to get more of a grasp..... I have an ASP Code generator, would like to know who here has built MySQL>PHP DataCentric Code Generators? I have a basic plan... planning on looking at code to find the datatype and loop through...

Part and Inventory Search

Back
Top