Jump to content

requinix

Administrators
  • Posts

    15,264
  • Joined

  • Last visited

  • Days Won

    431

Everything posted by requinix

  1. PHP doesn't support multiple values from inputs with the same name. You will only get the last value as each one overwrites the previous value. You can, however, use arrays. Name your inputs like branch[] (yes, like PHP's array syntax) and $_POST["branch"] will be an array. You can use array keys too like branch[0] or branch[foo] if you wish but they're not required.
  2. Have you looked at the server error logs yet?
  3. There's no logging in that code you've just posted. So where is it happening? Outside the switch? If you have it happen after then you can set some flag in the default case like $hit_default = true; and check for that when you log whatever.
  4. You can have a case cascade into a default. case 'DEFAULT_CATCHALL_ERROR_CODE_9999': default: // code
  5. This topic has been rewritten to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=356324.0 (have I used that one before? I need to write these down somewhere)
  6. I was wondering whether you recognize it. Maybe it was one of the items that you deleted earlier.
  7. The output in the screenshot doesn't match up with the code you've posted.
  8. Good. Because now I'll tell you that there's a syntax error in your query. And with what Muddy told you to do, you should be able to see where it is.
  9. First things first: SQL injection. All those $_POST items need to be escaped before you can stick them into the query. They all need to look like $ud_P_Id = mysql_real_escape_string($_POST['ud_P_Id']; Move the database connection stuff to before all the assignments, then add mysql_real_escape_string() to all of them.
  10. "forte" $subject = "Contact Form: $subject";
  11. You're joking about the letter, right? What is the sixth item? I don't see one. Does it look familiar?
  12. And it's more correct too. Even though PHP is loosely-typed, being specific helps. I mean for all I know, if loggedIn=1 then maybe loggedIn=2 could mean something else. Normal user versus administrator?
  13. It is not necessary. However it is bad form to modify the values in $_POST et al. so if you need to do something to them then keep that first section and modify your variables instead.
  14. The Arabic Unicode block has 253 characters. The Hebrew block has 87. There are other RTL alphabets. Detecting those characters would be obscene. Enjoy trying to do that.
  15. PHP has to get its information from somewhere. A lot of the stuff you know about is available because PHP runs as a server module or CGI application: DOCUMENT_ROOT, SCRIPT_NAME, HTTP_HOST, and so on. Thus when PHP doesn't run as a module or through CGI you lose it. So think about that. "Is this thing I want available because PHP is running as a webpage? Or can PHP figure it out independently?"
  16. Most of the familiar stuff in $_SERVER isn't available if you're running the script from a command line (such as through a cron job). For example, DOCUMENT_ROOT tends to be empty...
  17. Enable URL rewriting If the domain name contains ".localhost." and The request does not refer to a directory and There exists a file named "(request).html" then (1) Set $1 to the request and (2) continue processing as if the request was actually for "$1.html" instead
  18. How else are you going to find what you want unless you're prepared to search the entire array? The only way was if the array was sorted or otherwise preprocessed, but to do that from scratch you'd still have to look at everything. Your logic is great but plain JavaScript doesn't work like that. As you still haven't said whether you want just one id or all the matching ids, for one the logic is looking at each item in the array, if x > data[0] and y > data[1] and x and for many [code]start with an empty list. looking at each item in the array, if x > data[0] and such then add the id to the list. after searching the array, return the list
  19. First, you have to understand that how the feeds are displayed is outside of your control. You can provide as much information as you want but the ultimate display of the feed will vary. If one includes links and one doesn't then that's how it is. But I did notice your items don't have s. Throw those in. url here And everything that can be text needs to be htmlspecialchar()ed if it isn't already. As for IE showing six, could it be remembering one of the items it saw earlier?
  20. Use a loop. Look through everything and return the current item's ID once you find a match. If there could be more than one you scan the whole array and track all the matching IDs.
  21. Does a background image not suffice?
  22. It doesn't sound like you should be using regular expressions. What do you mean "match an array against zero"?
  23. http_post_fields() comes from a PECL extension, and those are less common than the regular extensions. Your host probably has cURL enabled. Try using that instead.
  24. Does it work?
  25. Your code is not the same as l0gic's. Yours may look like it works but it does not.
×
×
  • 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.