Jump to content

newyear498

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Everything posted by newyear498

  1. Actually let me correct myself! the errors seems to only be on google chrome reload.. NOT REVISITS so i'm not to concern about this anymore... but its funny, I would really like to have you guys try this on your sites.. go to you site.. do an ajax function.. then press reload tab on google chrome.. and try the same ajax function again several times and see if some of those reactions are slow? I wanna know if theres a glitch with my site or google chrome reloading issues with AJAX!
  2. oh, and I have the latest version of google chrome.. I did not try it on older chromes.. only newest versions of IE, firefox, and safari.. all with perfect responses.
  3. my script is working perfect in every browser.. except google chrome has a strange glitch the script works fine in google chrome until the next visit/ reload webpage. then all ajax requests made by google chrome go from being near instant to waiting 3 seconds. I don't understand this issue.. and with google chrome becoming increasingly popular to don't want to over look it. 3 seconds is a long wait when making ajax requests back to back and users being left at a white page. any ideas on this? all other browsers return instant speed no matter how many times I reload or revisit. the formula for disaster is simply reloading or revisiting the site via google chrome.. I guess its a cache error? but I'd rather ask some more experienced users such as yourself possible! THANKS VERY MUCH!!!
  4. I never knew you were supposed to do quotes around that, I never really considered the GET/POST methods to be array indexs, good thing to know, appreciate it!!!
  5. wow its late.. I been programming to much, back and forth with javascript I put + rather than . and I was using GET ment to do POST its time for coffee
  6. I have this script which I will post below.. the problem is that the following script only works with number.. when I use this script the error.txt will only write numbers and if I send text like... ?trueId=hey nothing happens but ?trueId=1 works just fine.. heres the script <?php $handle = fopen('error.txt', 'r+'); $trueId = $_GET[trueId]; $nextLine = false; $realText = false; while(!feof($handle) && $realText != $trueId) { $nextLine = fgets($handle); $realText = $nextLine + "\n"; } if($realText != $trueId){ $break = "\n"; $text = $trueId; fwrite($handle, $break); fwrite($handle, $text); fclose($handle); ?> THANK YOU! Appreciate the help!
  7. I need to pass info to a php script via link while ignoring the character '&' for example: mywebsite.com/myphp.php?info=thisInformation&thecharacter& is there anyway I can tell php to ignore the character '&' and just read it as text (cause I understand its a special character.. maybe something like in XML you can ignore the character & by using <![CDATA[ ]]> thanks!!! much appreciated!!! PS: this is a must.. since in the end I am passing links.. and urls.. that are like amazon.com/blah&blah
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.