Jump to content

Basic Help: PHP String and Echo


webmaster1

Recommended Posts

Hi All,

 

Where is the correct place to add my paragraph tags in the following sentence?

 

<?php
$message_successa="Thank you ";
$message_name=$_POST['name'];
$message_successb= "for your interest! Your message has been recieved and will be replied to shortly.";
$message_successc= "IP Address: "; 
$message_ipaddress=getenv('REMOTE_ADDR');
$message_successd="Date Sent: ";
$message_now_datetime = date('Y-m-d h:i:s');                  

echo "$message_successa $message_name $message_successb $message_successc $message_ipaddress $message_successd $message_now_datetime";
?>

 

Do I add to the variable declaration or the echo? I want to wrap certain variables in <p> so I can style them with an external CSS sheet.

Link to comment
https://forums.phpfreaks.com/topic/135860-basic-help-php-string-and-echo/
Share on other sites

<?php
$message_successa="Thank you ";
$message_name=$_POST['name'];
$message_successb= "for your interest! Your message has been recieved and will be replied to shortly.";
$message_successc= "IP Address: "; 
$message_ipaddress=getenv('REMOTE_ADDR');
$message_successd="Date Sent: ";
$message_now_datetime = date('Y-m-d h:i:s');                  

echo "<p>$message_successa $message_name $message_successb $message_successc $message_ipaddress $message_successd $message_now_datetime</p>";
?>

 

That will put all the Text in paragraph format

also if you want to make it easier just add

 

<?php
$message_successa="Thank you ";
$message_name=$_POST['name'];
$message_successb= "for your interest! Your message has been recieved and will be replied to shortly.";
$message_successc= "IP Address: "; 
$message_ipaddress=getenv('REMOTE_ADDR');
$message_successd="Date Sent: ";
$message_now_datetime = date('Y-m-d h:i:s');       

$message = "$message_successa $message_name $message_successb $message_successc $message_ipaddress $message_successd $message_now_datetime";

echo "<p> $message </p>";
?>

 

 

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.