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

    mysqli_stmt_bind_result unexpected behavior on MAC versus PC

    Using XAMMP or WAMMP on my MAC, I am seeing some odd behavior when attempting to retrieve some values from a BIGINT(10) MYSQL field, and I can only assume its the MYSQL bind or PHP echo, the same code works fine on a PC. $stmt = mysqli_prepare($this->connection, "SELECT USER_ID, USER_NAME...
  2. justride

    Retrieving data from 2D Array's off of Form Submits

    That did the trick. Thanks so much!!!
  3. justride

    Retrieving data from 2D Array's off of Form Submits

    I will try your much cleaner implementation this evening. Thanks
  4. justride

    Retrieving data from 2D Array's off of Form Submits

    The following code was working, not sure the version of PHP that I was using, but I know it worked on 4. Rrecently my host upgraded to PHP Version 5.2.13, and all of the code is broken. I have an HTML Form Submit. My HTML Form POST the following variable "requirements" as 2D array data fine...
  5. justride

    regular expression

    Thanks a ton, so this stating any occurence of & followed by the NOT of 1 occurence of amp; (case insensitive) ? Thanks so much!
  6. justride

    regular expression

    Does anybody know the pattern to escape special characters if they arent already escaped? for example, to escape TEST1&TEST2 but not TEST1 & TEST2 Thanks
  7. justride

    regular expression help

    yes, I have multiple tags, is that what the *? is doing? thanks for all the help thus far
  8. justride

    regular expression help

    Thanks for the help, I am noticing that echo \\1$ prints multiple instances. Is there any way to grab the whole text within >whole text< and assign to \\$1? $pattern = "/>(^)*</"; that seems to be the syntax for the pattern but when i use $pattern = ">(^)*<"; $replace = "/>test\\$1</"...
  9. justride

    regular expression help

    thanks for the help, ill give it a go
  10. justride

    regular expression help

    Hello all, I am attempting to search and replace some xml text using php's regular expression library. I want to find all occurences of >some alpha text< withing an xml string and replace with ><font...>some alpha text< here is what I have so far pattern = ">[a-zA-Z0-9]*<"; $replace =...
  11. justride

    library to format xml for html view?

    Thanks, pear looks fun to install on windows, any suggestions?
  12. justride

    library to format xml for html view?

    Anybody know if there is an open source library to take an xml string and render it as html with tabs, color coding etc... thanks
  13. justride

    IE not updating with my ajax polling implementation

    awesome tip, thanks!
  14. justride

    Content doesn't reload into div in IE

    sounds like it might be my problem too. as a temp fix, in IE, go to tools/internet options/settings select the first radio button "everytime I vist the page" and close IE, open IE and try your page again. I agree, I would like a fix to this issue as opposed to a bandaid.
  15. justride

    IE not updating with my ajax polling implementation

    Hello, I am new to the ajax methodology so please bear with me. I have implemented a javascript poll, every second, to my java servlet for message board data. Upon return, I display this data in some div on the jsp page. I noticed in Firefox this works, but in IE, unless I change my "check for...
  16. justride

    pass 2d array to a function from html

    Sorry for my ignorance here. I went off on a tangent with the getElementByID (researchin online) attribute and lost track of my initial problem. My lack of knowledge combined with IE's wonderful debug mechanisms (j/k) doesnt make learning JS any easier, hence why I resort to alert()'s...
  17. justride

    pass 2d array to a function from html

    <select name="requirements[0][]" id="reqs" multiple size=10> var reqs = new Array(); reqs = document.getElementById("reqs"); alert("req:".reqs) this gives an alert with undefined. alert("req:".reqs[0][0].value) <--- that fails any suggestions?
  18. justride

    pass 2d array to a function from html

    Hello, I have mutliple HTML <select name="requirements[0][]" multiple size=10> select boxes on my page that get used by PHP. [0][0] - [n]n] my question is, how can I send this array to a javacript function to verify a value exists at [0][0] in such a way as i do with a text field...
  19. justride

    can i disable the cd rom eject buttom after windows boots?

    Is there a setting to disable the eject button on a cdrom once the operating system loads?
  20. justride

    create batch file to launch executable

    how can i create a batch file to launch an executable with parameter arguments... @echo on "c:\crap.exe -Darg=crap" pause the -Darg=crap is not being processed, but the dos window doesnt not display any error, it just executes crap.exe alone. thanks

Part and Inventory Search

Back
Top