Jump to content

fugix

Members
  • Posts

    1,483
  • Joined

  • Last visited

Everything posted by fugix

  1. Can you be a bit more descriptive and post your code. You'll want to use the mail() function to send an email. I'm not sure why file_get_contents is relevant.
  2. Have you reset your apache sever after installing php5
  3. http://www.php.net/manual/en/language.oop5.abstract.php If further clarification is needed let me know
  4. fugix

    Hello

    Lol. Nothin man. Welcome to phpfreaks.
  5. fugix

    Hello

    An awesome php guy.
  6. How are you fiing a zip code from those two arrays. And your regexp doesn't need a min, max if they are the same, see revised. if(!preg_match("/^[0-9]{5}(\-[0-9]{4})?$/",
  7. if($rightname != $_SESSION['username'] && $_SESSION['rank'] < '5') { $_SESSION['msg']='You don\'t have the permission to do that'; echo "<script>history.back()</script>"; } seems that upon loading this page, one of these conditions is being met to store the session and direct back
  8. On the page that I gave you. Search for jquery's Ajax API
  9. I wouldn't recommend using intval unless your numbers are in string format. If they are in int format, leafing 0's csn cause unexpected results
  10. Looks like a jquery function that wouldn't actually do anything. As it is, when the tsp with an id of "f" is submitted. It is missing direction as to what to do once it's submitted
  11. The function session_is_registered() is deprecated Try instead. if($_SESSION['username']
  12. fugix

    Hello There

    Welcome to phpfreaks and nice to know a little about yourself. Since you have some experience, hopefully you can help out helping other people, and at the same time learn from others. Fugix
  13. To learn more about jquery. Visit the jquery documentation link located in my signature
  14. http://us3.php.net/manual/en/function.ltrim.php
  15. It would be easier for us if you pasted your code on this thread please.
  16. As stated before in this thread. You cannot usecthe header() function after any output has been sent to the browser. Triggers your error
  17. There are several different joins. Read here for syntax
  18. What do you mean by "messes everything up"? Also, where does your first ending form tag come from. Have you tried encasing the entire table
  19. For me the link doesn't work. But anyway, I had a similar issue before on a site I am working on. Turned out I forgot to end a span tag before my img tag. I saw the image in firefox but nit chrome. I would check your page source on your browser to double check for an HTML error
  20. But... You just did that even right now, with this: Yeah. No need to repeat something that's already been said. OP, if you need further assistance with this let us know and we will be glad to help Can't argue with that. You just repeated someone else alluding to not repeating things... Can't argue with that. I did the very thing I said you shouldn't do. My bad
  21. Unions are designed to match two tables field by field. If this is not want you want, then I would use a join as MrAdam recommended. What exactly do you need help with now
  22. To use a union, both tables must have the same number if columns. Perhaps you should use a join instead
  23. No problem at all. The manual that I referred you to will teach you alot about many different features that php has to offer
  24. What do your txt file contents look like
×
×
  • 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.