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 = "[email protected]";
            $subject = "WiFi Password";
            $headers ="From: [email protected]";



            $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
https://forums.phpfreaks.com/topic/179633-solved-syntax/
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 = "[email protected]";
            $subject = "WiFi Password";
            $headers ="From: [email protected]";



            $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
https://forums.phpfreaks.com/topic/179633-solved-syntax/#findComment-947853
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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