Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
73% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~4K People Reached
Favorite Forums

6 Posted Topics

Member Avatar for kumiyare

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. …

Member Avatar for jstfsklh211
0
256
Member Avatar for madkat3

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 …

Member Avatar for seventeen
0
2K
Member Avatar for Member #743307

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); } …

Member Avatar for kumiyare
0
141
Member Avatar for kumiyare

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 …

Member Avatar for phpuser
0
412
Member Avatar for kumiyare

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 …

Member Avatar for kumiyare
0
102
Member Avatar for kumiyare

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 …

Member Avatar for kumiyare
0
321

The End.