User Profile

Collapse

Profile Sidebar

Collapse
banning
banning
Last Activity: Dec 12 '09, 04:25 PM
Joined: Aug 8 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • banning
    started a topic Subscript out of range Error

    Subscript out of range Error

    Im a PHP developer and I officially HATE ASP

    why does my code give me this error?

    ERROR:
    "Microsoft VBScript runtime error '800a0009'

    Subscript out of range

    /synergy/docs/ProductionRepor ts.asp, line 42 "

    CODE:
    Code:
    	DIM sql: sql = conn.Query("SELECT cmp_name, cmp_code FROM cicmpy")
    	
    	DIM i
    	i=1
    	DO WHILE i<10
    ...
    See more | Go to post

  • banning
    started a topic Installing SOAP getting Errors

    Installing SOAP getting Errors

    hi i've been trying all day to install soap and its getting really annoying... the extension_dir is set up correctly... i have written in my ini file extension=php_s oap.dll and there is a file that is called php_soap.dll

    the problem comes when i restart my server it gives me this error

    "the procedure entry point zend_unmangle_p roperty_name_ex could not be located in the dynamic link library php5ts.dll."...
    See more | Go to post

  • banning
    replied to SAJAX .. introduction help
    in PHP
    yea, do i have to do something special when a problem is solved or a thread i started is closed?
    See more | Go to post

    Leave a comment:


  • banning
    replied to SAJAX .. introduction help
    in PHP
    hey sorry i ended up dropping SAJAX and going with prototype/scriptaculous...
    See more | Go to post

    Leave a comment:


  • banning
    replied to type=image not working as I expected in IE
    in PHP
    I am afraid i don't understand your question... sorry i'm not on here often i don't usually expect people to have questions for me haha.... but if you're still around and you get this id love to answer your question, just not quit sure what exactly your asking....
    See more | Go to post

    Leave a comment:


  • banning
    replied to type=image not working as I expected in IE
    in PHP
    here is what i ended up doing

    [HTML]<input type="hidden" name="submit" value="submit">
    <input type="image" src="url" />[/HTML]
    See more | Go to post

    Leave a comment:


  • banning
    replied to type=image not working as I expected in IE
    in PHP
    ok so i tried it real quick wit input type="submit" and it worked.. (idk why i didn't try that before i posted) HOWEVER!!! lol i still would like to know why input type="image" worked in firefox but not IE... cause yeah id really like to have a custom button.. and i really dont wanna write a bunch of javascript just to get it...
    See more | Go to post

    Leave a comment:


  • banning
    started a topic type=image not working as I expected in IE
    in PHP

    type=image not working as I expected in IE

    Ok this makes no sense to me seeing as how PHP should work regardless of the browser... or am i wrong on that? ANYWAY here...

    [HTML]<form action="<? $_SERVER['PHP_SELF'] ?>" method="post" enctype="multip art/form-data">
    <input type="image" name="submit1" value="submit1" src="imgs/uploadimg.jpg" width="169" height="35" />[/HTML]...
    See more | Go to post

  • banning
    started a topic SAJAX .. introduction help
    in PHP

    SAJAX .. introduction help

    please feel free to delete this... i am an idiot... here is my code that works in case anyone was curious as to what i was trying to accomplish...

    Code:
    <?
    	require("Sajax.php"); 
    
    	function sayhi(){
    		return "Name: Tom / Age: 26";
    	}
    	
    	sajax_init();
    	// $sajax_debug_mode = 1;
    	sajax_export("sayhi");
    	sajax_handle_client_request();
    ...
    See more | Go to post

  • banning
    replied to SAFE MODE Restriction in effect
    in PHP
    haha, cute........... ..........
    See more | Go to post

    Leave a comment:


  • banning
    replied to SAFE MODE Restriction in effect
    in PHP
    Hey I got it working.., Safe Mode was turned off globally but not locally which is what my problem was... Thanks for they help guys I freakin love this web site... serious... do they have shirts I would buy one to help support this site...

    i <3 u all :)
    See more | Go to post

    Leave a comment:


  • banning
    started a topic SAFE MODE Restriction in effect
    in PHP

    SAFE MODE Restriction in effect

    OK, first off i wanna thank who ever helps me with this problem right off the bat.. it is really confusing and bothering the hell out of me that i can't fix it... or that there is even an error at all.

    if you go here
    Floor Plans Preview
    and here
    Available Home Preview
    you can clearly see that there are no errors and that all the images display just fine.

    now if you go there to the live version...
    See more | Go to post

  • banning
    replied to mkdir permissions help
    in PHP
    LOL the poor file haha... thats good stuff... but rmdir(); only deletes a directory that is empty. However i have found a solution on another forum, i haven't tried it yet but i'll go ahead and post it.

    Code:
    function RecursiveFolderDelete ( $folderPath ){
        if ( is_dir ( $folderPath ) ){
            foreach ( scandir ( $folderPath )  as $value ){
                if ( $value != "." && $value != ".."
    ...
    See more | Go to post

    Leave a comment:


  • banning
    started a topic mkdir permissions help
    in PHP

    mkdir permissions help

    Code:
    while($row = mysql_fetch_array($getID)){
    		$id=$row['id'];
    		$dir='../picture_library/floorplans/'.$id;
    		mkdir($dir,0777);
    		chmod($dir,0777);
    	}
    ok this is really starting to kill me... i've bee on this for an hour now surfing the net trying to find a solution. I am using a test server that i run on my computer to build sites and then upload (not sure if that will have any bearing)....
    See more | Go to post

  • banning
    replied to getElementById multiple Id's
    This is the answer too...
    See more | Go to post

    Leave a comment:


  • banning
    replied to getElementById multiple Id's
    no its not working... ie just sucks i guess... when i do what you posted it just turns the whole table a colour... i dont want that, i want to highlight just one column...

    here is the site im using it on, http://doughxpress.com/staging/dryerDetailsElec?Wid=76...
    See more | Go to post

    Leave a comment:


  • banning
    replied to getElementById multiple Id's
    when i try that it turns the whole table the color... what im trying to accomplish is just turn an individual column one color. course you probably all ready know that but yea i tried it and it worked in firefox and ie like it should :)...
    See more | Go to post

    Leave a comment:


  • banning
    replied to getElementById multiple Id's
    see when i do this in IE it comes out as 0
    but when i do it in FIREFOX it comes out as 41...
    See more | Go to post

    Leave a comment:


  • banning
    replied to getElementById multiple Id's
    nah i went ahead with pbmods solution

    [CODE=html]

    <td name="myName" ... >


    <td name="myName" ... >
    [/CODE]

    [CODE=javascript]
    var tds = document.getEle mentsByName('my Name');
    for( var i = 0; i < tds.length; ++i )
    {
    tds[i].style.backgrou ndColor = 'annoyingly bright neon peach';
    ...
    See more | Go to post
    Last edited by pbmods; Sep 11 '07, 07:46 PM. Reason: Fixed CODE tags.

    Leave a comment:


  • banning
    replied to getElementById multiple Id's
    im not using Id thought im using name...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...