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 TouchToneTommy 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?

    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...
  2. DigitalBuilder

    Most advanced Javascript menus

    What are the most advanced freeware and payware Javascript menus?
  3. 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...
  4. 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
  5. 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>"...
  6. DigitalBuilder

    Question 2 - Adding dates together and comparing

    How to Add two dates together with PHP 7 Compare them [For scheduled scans.
  7. 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...
  8. 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...
  9. DigitalBuilder

    What tools including Code Generators do you use?

    What tools including Code Generators do you use?
  10. 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...
  11. 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...
  12. 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...
  13. DigitalBuilder

    Auditing Database/Catalouge for Large quantity of Systems

    Next monday I start a new trial job catalouging 1000 computers, 110 pellet loads of equipment e.g. printers, monitors. It will be on a team of 5 or so from what I gather so far. What I would like to know: Management 1. Does anyone know a Database system already developed for catalouging such...
  14. DigitalBuilder

    How to access system tables from ASP Query

    SELECT [table_name] FROM [INFORMATION_SCHEMA].[Tables] 1. Works in the query manager 2. In an asp Recordset with the SA account it returns -1 3. I also want to use it without SA, its on a commercial web host facility Any ideas?
  15. DigitalBuilder

    Select top @PerPageAmount * from table

    Declare @Offset int Declare @PerPageAmount int Set @Offset=25 Set @PerPageAmount=5 Select top @PerPageAmount * from dbo.FlatArrMetaType where flatarrmetatypeid>@offset
  16. DigitalBuilder

    multiple fields from multiple tables have unique names

    I want to have multiple fields from multiple tables have unique names or a way to uniquely identify them when using table1.*, table2.* Any ideas? e.g. Order gets the second order and not the first I realise order has to be escaped in [order] when doing the sql but not for the RS Example data...
  17. DigitalBuilder

    SQL Server, Dynamic Array of Array loading question

    SQL Server, Dynamic Array of Array loading question Quote: -- --Question -- -- How to load in array from @value -- Or is there another way? -- --@12 will be an array type, array of array Declare @12 varchar(200) Set @12='(1,2,3)' if (@12<>null) BEGIN Select 12 from FlatArrayMetaType inner...

Part and Inventory Search

Back
Top