Jump to content

AndyB

Staff Alumni
  • Posts

    5,465
  • Joined

  • Last visited

    Never

Everything posted by AndyB

  1. That would make it some kind of self-inflicted wound akin to the yellow background on form fields when you install some other toolbars.
  2. /temp is flushed when the browser session terminates.
  3. What browser are you using? Please identify a specific URL where you see this behaviour exhibited. I see nothing on that site that attempts to autocomplete. I see no pop-up option.
  4. The browser sandbox security model prevents browser content affecting user settings as far as I know.
  5. glob() - http://ca.php.net/manual/en/function.glob.php - such a useful function
  6. Can you confirm that your HTML form does actually include a value for the id in the clickable links? Please also identify each/any error message you got after making the changes I suggested. 'not working' isn't helping us help you.
  7. FYI - http://library.thinkquest.org/20991/gather/formula/data/213.html works for all arithmetic progressions.
  8. <a href="update.php?id=<? echo $rows['id']; ?>">update</a> Note that you're using short tags there. Check the generated HTML source to verify that id actually has a value. If not, edit that code to: <a href="update.php?id=<?php echo $rows['id']; ?>">update</a> Other than that, it's likely one or more of your SQL queries is failing. You can check that easily enough bu using rational error trapping/display. For example, change instances of: $result=mysql_query($sql); to: $result=mysql_query($sql) or die("Error: ". mysql_error(). " with query ". $sql);
  9. If the array values are an arithmetic progression, then from count() and diff between consecutives you can determine the expected sum of all values. If it equals array_sum() then you have all values in the array.
  10. You need to use the complete/correct name you gave your database. I doubt it's named 'database'
  11. Change: $results = mysql_query($query); to: $results = mysql_query($query) or die("Error: ". mysql_error(). " with query ". $query;) That should explain what's going on/going wrong.
  12. Yes. You expected people here to create a small database, populate it, write a script, etc. and test it 'thoroughly' all for free because you can't test it for reasons you don't disclose. And, in effect, you expected the testers to guarantee it would work. And in return, you offered what? Nothing. That's not the nature of help this forum provides. Our time is at least as important as yours.
  13. If you can't or won't test it, how thorough do you expect us to be?
  14. I suspect that you'll get a biased opinion here, given that the forum members are php/MySQL users who may not have a lot of 'public' application experience with other (more expensive, as you note) alternatives. Much of what you want to do is relatively trivial construction of queries against a database. Often, the boring, tedious parts are the construction of database management scripts that can be used by normal humans. Something I've used which has been successful even for the 'blondest' clients is phpMyEdit. Details - http://hockinson.com/index.php?s=27
  15. http://www.open-realty.org/ Maybe that would help you decide.
  16. Asked and answered http://www.phpfreaks.com/forums/index.php/topic,219441.msg1005766.html#msg1005766 Please DO NOT double post. Thread closed.
  17. str_replace() - see the manual. Also, please do not double post (or post in the wrong forum!)
  18. On the contrary, the request was for totally non-specific suggestions with zero context. I was happy to oblige. If the OP had explained what sort of suggestions they wanted, I could have been specifically constructive. Lose the cheesy background, make link text obvious, use a sans-serif font, etc.
  19. Thanks for coming in for an interview. Would you close the door on your way out, please?
  20. Suggestions? Take two aspirin and call me in the morning.
  21. http://maps.google.com/maps?f=q&hl=en&geocode=&q=1500+eglinton+ave+east,+toronto,+on&sll=43.723603,-79.325527&sspn=0.002504,0.004292&ie=UTF8&ll=43.723667,-79.325886&spn=0.001353,0.002403&t=k&z=19 Obviously, it's a Google Maps mis-stitch of the satellite images (I drove by this afternoon to check!). First time I've noticed anything quite this obvious!
  22. glob() is likely to help - http://ca.php.net/manual/en/function.glob.php
  23. The query is executed outside the loop, so it only happens once
×
×
  • 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.