User Profile

Collapse

Profile Sidebar

Collapse
TanuLamba15
TanuLamba15
Last Activity: Apr 15 '15, 01:23 PM
Joined: Feb 4 '15
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • TanuLamba15
    started a topic How to sending mail with attachment?
    in PHP

    How to sending mail with attachment?

    Hi All,

    Can anyone guide me I want to send attachment with my mail and I'm using http://demo.tutorialzine.com/2013/05...e-upload-form/ plugin instead of simple <input type="file"/>, the issue is occurring when I'm sending mail using above given plugin I'm not receiving attachment and when I'm simply put <input type="file"/> it works perfectly.

    PHP code that I've added is:...
    See more | Go to post
    Last edited by Rabbit; Apr 2 '15, 03:29 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.

  • TanuLamba15
    started a topic How to send attachment in email?
    in PHP

    How to send attachment in email?

    Hi All,

    I want attachment to send with the email when a prospect clicks on submit button.

    I used this code:

    Code:
    $allowed = array( 'jpg', 'gif','zip');
    
    if(isset($_FILES['upl']) && $_FILES['upl']['error'] == 0){
    
    	$extension = pathinfo($_FILES['upl']['name'], PATHINFO_EXTENSION);
    
    	if(!in_array(strtolower($extension), $allowed)){
    		echo '{"status":"error"}';
    ...
    See more | Go to post
    Last edited by Rabbit; Mar 11 '15, 03:42 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.

  • TanuLamba15
    started a topic How to get current html page's title using PHP?
    in PHP

    How to get current html page's title using PHP?

    Hi All,

    I want to get the current page title using PHP.

    I tried "var $subject_title =(document.titl e);" javascript code, but could not get this in PHP code.

    Can anyone help me for this.

    Please let me know if you want more information on this.


    Thanks in advance!
    See more | Go to post
No activity results to display
Show More
Working...