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. JRSofty

    "'browseris' is undefined" generated from Sharepoint

    I'm trying to track down the cause of the Browser error "'browseris' is undefined" when viewing a website generated by Sharepoint. Looking at the source code does not show any call to a javascript browseris variable. The error is intermittent, and although it doesn't cause problems with the...
  2. JRSofty

    Arranging query output with multiple ORDER BY

    Brilliant, Thanks for the help. JRSofty http://jrsofty.stinkbugonline.com
  3. JRSofty

    Help with array "cleaning"

    I did something like this but for includes not for storing into an array. Here is the code that can be modified for it if($handle = opendir("{$CONFIG['root']}/sources/mods")){ // This checks that the directory is opened if not it doesn't fire while(false !== ($filename = readdir($handle))){...
  4. JRSofty

    Grab variables from database and push through 2 pages

    Use the global $_GET array. when you have an URL something like http://www.mysite.com/index.php?id=10&act=3&name=bob&auth=true you can access each and every one of those items in the URL using $_GET it is a superglobal meaning that it is available everywhere in your script. with the above...
  5. JRSofty

    Arranging query output with multiple ORDER BY

    Ok that works like my IF statement but it doesn't get them into dis_order (display order) as well unless they all have sequential ids. In this case they might not have sequential ids where id=1 the dis_order might be 2 so that id=1 need be the second in the list. JRSofty...
  6. JRSofty

    Arranging query output with multiple ORDER BY

    Here is the table I have uid, pid, dis_order, title uid = Unique ID pid = Parent ID dis_order = Display Order title = title Ok so I need to display this table in such a way that 1. ordered by display order 2. children are under their parents 3. children are also in their display order I...
  7. JRSofty

    Parsing Text written ARRAY into individual values

    Great thanks for the code. Now if I can figure out how to do this without the eval or to find a way to secure it. JRSofty http://jrsofty.stinkbugonline.com
  8. JRSofty

    request isdefined

    You can try to use the isset() function like so if(isset($_REQUEST['username'])){ then do my thing } or you can have it do something when it is not set if(!isset($_REQUEST['username'])){ then do my thing } JRSofty http://jrsofty.stinkbugonline.com
  9. JRSofty

    Parsing Text written ARRAY into individual values

    Close, the problem I'm having is that the array portion is stored as a string (comes from a POST form) in the $_POST['newval'] and I can't for the life of me get the string value of $_POST['newval'] which is "array('arr1'=>1 ..." parsed into an actual array. I've tried parse_str() and eval()...
  10. JRSofty

    Parsing Text written ARRAY into individual values

    In a form I have where an admin user can create a new config array element for any changes he makes to scripts. The possiblity exists to create a multi-dimensional array element by entering in the textarea array('arr1'=>array('a'=>1,'b'=>3,'c'=>5),'arr2'=>array('a'=>2,'b'=>4,'c'=>6)) Which...
  11. JRSofty

    Implementing a TGML-like markup for several languages

    YIKES that was really confusing. Ok here is what I've done so far with this type of subject myself. I have developed my own way to identify the [] tags and then to put the information into HTML. This code identifies my code type tags for example: while...
  12. JRSofty

    Running my program on a different computer

    Hello Askeladden, What you need to do is look under your File Menu of the IDE and look for a line that says Compile statsbygg.exe or something along those lines. This will create an executable file for your application. The next step is you must place this executable file inside a setup file...

Part and Inventory Search

Back
Top