- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
6 Posted Topics
I have the following query which joins 5 related tables to get the desired result set of 10 rows, I did my best to solve the issue by adding indexes and re-writing the query in many different ways but I ended up either unexpected result or a very slow query. …
Hey, madkat3 Try this, Some of windows servers didn't allow to send emails from a different account rather than their own: Change [code=php] $headers = "From: [email protected]"; //into something like this: $headers = "From: [email protected]" [/code] Hopefully it will work, you should also know that these emails will always arrive …
To delete the entry from the database and remove the associated photo or file use the following code [code=php] <?php // The code assumes that you are deleting multiple entries at once using check-box, so it is looping.. $qry=mysql_query("select * from TABLE where id='$id'"); $row=mysql_fetch_array($qry); if($row["photo"]!="") { $photo=$row["photo"]; unlink("/path/to/photo/".$photo); } …
Hi, Every body. I am writing a PHP thumbnail script, My goal is to upload images to the server and save the original images inside images directory and save the thumbnail to thumb directory which is inside images directory. Now every thing working fine, except the BMP type images, when …
Hi every body!, I am new to PHP and I'm developing a basic PHP CMS, now specially I'm developing the database backup & restore section of the CMS, so I've experienced one problem. I want that CMS users able to upload their database back ups to restore, they will use …
I have a slideshow of quotes based on the "Ultimate Fade-in slideshow (v2.1)" at Dynamic Drive: [url]http://www.dynamicdrive.com/dynamicindex14/fadeinslideshow.htm[/url] This is right under my navigation bar, and the drop-down menu items are hidden behind the javascript slideshow. Some background: The reason I did it this way because I first started out with …
The End.
kumiyare