Jump to content

[SOLVED] Syntax


uwictech

Recommended Posts

Hi All,

 

I'm struggling with the syntax in the code below. As you can see, I can echo out when the passwords will be valid until on the screen, but, I would like to put this into the email body. When I try it tells me I have a syntax error.

 

Can someone help please?

 

Jamie

 

<?php

$tomorrow = mktime(0,0,0,date("m"),date("d")+5,date("Y"));
echo "These Passwords are valid until the  ".date("d/m/Y", $tomorrow);

            ini_set("SMTP", "e2k3vs01.internal.uwic.ac.uk");


            $to = "jhancock@uwic.ac.uk";
            $subject = "WiFi Password";
            $headers ="From: WiFi@uwic.ac.uk";



            $body = "The new WiFi password for the Conferences SSID is: $string1\n\nThe new WiFi password for the Guest SSID is: $string2\n\n$tomorrow ";
            
            

            mail($to, $subject, $body, $headers);


            die();

        
?>

Link to comment
Share on other sites

Hi Jamie,

 

Stick the second conversion into a variable and try again.  Change your code to read:

 

$tomorrow = mktime(0,0,0,date("m"),date("d")+5,date("Y"));
$tomorrow = date("d/m/Y", $tomorrow);
echo "These Passwords are valid until the  ".$tomorrow;

            ini_set("SMTP", "e2k3vs01.internal.uwic.ac.uk");


            $to = "jhancock@uwic.ac.uk";
            $subject = "WiFi Password";
            $headers ="From: WiFi@uwic.ac.uk";



            $body = "The new WiFi password for the Conferences SSID is: $string1\n\nThe new WiFi password for the Guest SSID is: $string2\n\n$tomorrow ";
            
            

            mail($to, $subject, $body, $headers);


            die();

 

Hope this helps.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.