Jump to content

phpSensei

Members
  • Posts

    2,838
  • Joined

  • Last visited

    Never

Everything posted by phpSensei

  1. Thanks for stopping by and congratulating me guys, you are generous. I love you guys (all homo yes ) <3
  2. Did you have this? I believe its required, not too sure since I rarely work with special characters such as 'é' I am french though! <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  3. Hi there, From my understanding, I think you want Javascript for this type of functionality. Otherwise, if you don't mind explain what you are trying to accomplish. - PHPsensei
  4. Hi Guys, I am trying to send a donation but the page doesn't go through for the paypal checkout, I restarted my computer, cleared cookies, used different browsers, just wondering if you guys are getting the same thing?
  5. You can always just get a Cloud Girlfriend LMAOOOOOOOOOOOOOO! How was i unaware of this?!!
  6. Yeah the weather is freaking crazy, it has cooled down over here in Niagara Falls and its much more tolerable. But Its the good that the Staff is also keeping themselves healthy @AyKay: Hahaha, maybe I do man. She would probably be all over my ass about programming... I am just going to program myself a girlfriend. haha
  7. Because you need to add 'image/jpeg' to the list of allowed file types.
  8. $types = array('image/png', 'image/jpeg', 'image/PNG', 'image/JPG'); if (!in_array($file['image']['type'], $types)) { $error=0; } If the file type is NOT in this array error should be 1.
  9. Still don't understand this, and I found a bug with this class. I guess i'll report the bug (if it is one), find a work around for the error_reporting.
  10. Whats the point of while ($row = mysql_fetch_array($sql)){ $product_name = $row["product_name"]; $price = $row["price"]; } inside your loop?
  11. Are you passing the html file to imagesx() ? Why are you uploading an html file?
  12. Or just use the proper quotations?
  13. You're simply doing all the work for him, let him learn and try it before asking us to type for him. P.S, Stay away from w3schools.
  14. I don't know which edition of the book that is Mr.Blogger, but thats the right book to read.
  15. I would recommend a book: Sam's Teach Yourself PHP in 24 Hours. This was my first read about PHP, and I loved it.
  16. Np buddy, any questions you have once you have your code running, we will be happy to help you.
  17. I believe you can do something like this, I am not too familiar with this approach but there was a thread like this recently, I will try and find it. ORDER BY f_time_posted DESC, comments ASC";
  18. Hi PHPiSean, Thats the direction I would take, and create an entire table(s) for session cookies information.
  19. Do some research man, Its not that hard. Google "Mysql INSERT Tutorial"
  20. Hi Searls, The file name would be in full path $uploadfile = $target_path . basename($_FILES[uploadedfile][name][$key]);
  21. Hi Searls, That piece of code will go inside the Foreach loop, inbetween this line if (move_uploaded_file($_FILES['uploadedfile']['tmp_name'][$key], $uploadfile)) { /// insert piece of code echo $value . ' uploaded<br>'; } }
  22. Hi Conan, I would first learn how to make a Calendar, then jump over to events. http://www.google.ca/#sclient=psy&hl=en&source=hp&q=PHP+calendar+tutorial&aq=0&aqi=g1g-c3g-m1&aql=f&oq=&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=bf904649da877f2d&biw=1920&bih=883 Hope this helps.
  23. One way I would go about this is saving the session cookie information in a database which server A and server B will both use. You would also need to make a Garbage Collector function which will truncate the session tables
×
×
  • 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.