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

    getURL and POST - am I missing something?

    I've always used LoadVars for processing stuff with PHP in the background. Form submits etc... I've just tried it again now and it doesn't send me to the page?
  2. jonperks

    getURL and POST - am I missing something?

    LoadVars works fine - however I need to got to the page at the same time...
  3. jonperks

    getURL and POST - am I missing something?

    yep - no problems there...
  4. jonperks

    getURL and POST - am I missing something?

    When I click a button the below code sends me to the url witha long query string with all my variables. myButton.onRelease = function(){ getURL("http://www.domian.com", "_self", "GET"); } Works great. However I want it to look tidy and want to send the variables via POST...
  5. jonperks

    actionscript format fonts

    I've used the below code and it works... _root.test.onChanged = function(){ test.setTextFormat(format); } but surely it shouldn't have to keep checking, the font only changes when a button is clicked
  6. jonperks

    actionscript format fonts

    I have an input text field and a button that changes the font, here is the code the changes the font... typeface1.onRelease = function(){ format = new TextFormat(); format.font = "Times New Roman"; format.italic = true; format.size = 18; test.setTextFormat(format); } This changes the font...
  7. jonperks

    input text field CAPS - UPPERCASE

    Brilliant Thanks!
  8. jonperks

    input text field CAPS - UPPERCASE

    I've done it by calling the toUpperCase with onClipEvent (enterFrame) But this seems a little glitchy, flickers a bit... Is there no better way?
  9. jonperks

    input text field CAPS - UPPERCASE

    Unfortunately not, as that will convert it once it has been entered, I need it entered in uppercase in the first place, but I cant restrict the user to uppercase letters as I want them to be able to enter the text regardless of them typing with capslock or not. If I'm wrong please let me...
  10. jonperks

    input text field CAPS - UPPERCASE

    I have certain text fields that I want to only accept uppercase text, I dont mean that they have to have caps lock on.... I am looking for a way that regardless to if they type with caps lock on or off it gets entered in uppercase? Hope that makes sense thanks in advance....
  11. jonperks

    PHP 404 Error Page with redirect

    Yep sorted this out now, and created the next problem for myself...
  12. jonperks

    Stupid Stupid header location!!

    Thanks Dont worry your head too much, I think zeus is the culprit! and I dont have access to apache.
  13. jonperks

    Stupid Stupid header location!!

    Everything you said is right, the 404 is invoked through the .htaccess file. The page exists yes, it does now work as I am using a javascript redirect. Using the PHP redirect for some reason wont work when used in this situation. And it works it does the same in all browsers. I am using Safari...
  14. jonperks

    Stupid Stupid header location!!

    Its exactly the same as above UserID:10 In else URL:http://www.mydomain.com/ido/designs/initial.php?ID=6 UserID: In if
  15. jonperks

    Stupid Stupid header location!!

    Solved the problem with javascript redirect instead, still be nice to know what PHP isn't working though
  16. jonperks

    Stupid Stupid header location!!

    Tried that previously no joy...... Any other ideas, it's working when its not used as a 404 error page, its something to do with its implementation in that way.
  17. jonperks

    Stupid Stupid header location!!

    oh and if i go straight to 404.php and run it, it works fine, its obviously something to do with the headers once its been pointed to the 404 error page? Hope someone can help?
  18. jonperks

    Stupid Stupid header location!!

    The .htaccess file has been edited to point the 404 error to 404.php then this code is 404.php nothing else, this seems to be the best way to do this as I dont have apache mod rewrite etc its on zeus? If that means anything
  19. jonperks

    Stupid Stupid header location!!

    its looping??
  20. jonperks

    Stupid Stupid header location!!

    ok thanks done that and UserID:10 In else URL:http://www.mydomain.com/ido/designs/initial.php?ID=6 UserID: In if

Part and Inventory Search

Back
Top