Jump to content

netlovers

New Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

netlovers's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Following is the coding on line 242 in search.php file. list( $searchid, $kwords, $lastdate ) = mysql_fetch_row($lasts); And following is the coding on line 443 while ( list( $pid, $pcat ) = mysql_fetch_row($queryv) )
  2. I have installed Photopost Gallery it is working fine.But when i m searching for images it is showing 2 errors and not displaying any images. Following is link for image of error so if anybody has solution for this problem plz help me.
  3. Hi I have seen many websites using phpbb forum or coppermine photo gallery but all of the pages of phpbb or coppermine are in .html.So i wanna know how can i change my php pages of coppermine or any other script to html. Bye
  4. Actually i dont need any other code.The code i defind above is perfect for my needs.I just wanna know why it is not showing email text so plz tell me the solution for that.
  5. I have found the following code for sending html email with attachment . This code is working fi9 but it is not showing message text "hello" defined in $email_txt [code] <? if($_FILES["fileatt"] != NULL) {     $fileatt_type = "application/octet-stream"; //File Type     $email_from = "baber@inbox.com"; // Who the email is from     $email_subject = "Test File Attach"; // The Subjectof the email     $email_txt = "hello";      // Message that the email has in it     $email_to = "baberzubair@gmail.com"; // Who the email is too     $headers = "From: ".$email_from;     $file = fopen($_FILES["fileatt"]["tmp_name"],"rb");     $data = fread($file,filesize($_FILES["fileatt"]["tmp_name"]));     fclose($file);     $semi_rand = md5(time());     $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";     $headers .= "\nMIME-Version: 1.0\n" .     "Content-Type: multipart/mixed;\n" .     " boundary=\"{$mime_boundary}\"";     $email_message .= "This is a multi-partmessage in MIME format.\n\n" .     "--{$mime_boundary}\n" .     "Content-Type:text/html; charset=\"iso-8859-1\"\n" .     "Content-Transfer-Encoding: 7bit\n\n" .     $email_message . "\n\n";     $data = chunk_split(base64_encode($data));     $email_message .= "--{$mime_boundary}\n" .     "Content-Type: {$fileatt_type};\n" .     " name=\"{$fileatt_name}\"\n" .     "Content-Disposition: attachment;\n" .     " filename=\"{$fileatt_name}\"\n" .     "Content-Transfer-Encoding: base64\n\n" .     $data . "\n\n" .     "--{$mime_boundary}--\n";     $email_message = $email_message.$email_txt;     $ok = @mail($email_to, $email_subject,     $email_message, $headers);     if($ok)     {         echo "<font face=verdana size=2>The file was successfully sent!</font>";     }else{         die("Sorry but the email could not be sent. Please go back and try again!");     } } ?>[/code] so if u have solution for this problem plz tell me.
  6. Try Apnasoft Tell a friend Script.It has every thing which u need and it is too easy to customize.click on following link. [url=http://www.apnasoft.be/scripts.html]www.apnasoft.be/scripts.html[/url]
  7. http://www.phpfreaks.com/forums/index.php/topic,95433.0.html Above link is not helping me so does anybody has another solution.
  8. I want to hide original download link in php suppose i have 2 files with the following links http://www.domain.com/file1.zip and http://www.domain.com/file2.zip now i donot want to show these real link to users i want to create a file download.php when this file calls like this www.mydomain.com/download.php?id=1 it gives download of  file1.zip whose link mentioned above and when download.php calls like this www.mydomain.com/download.php?id=2 it gives download of  file2.zip whose link mentioned above and so on So plz help in this matter and tell me which function of php do i need to use in creating this do i need to use mysql.
×
×
  • 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.