Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-17-2012, 04:50 AM   PM User | #1
pagedrop
New Coder

 
Join Date: Oct 2005
Posts: 61
Thanks: 12
Thanked 0 Times in 0 Posts
pagedrop is an unknown quantity at this point
Thumbs up css class inside php echo

Hello,

this is my current php echo code line
PHP Code:
echo "uploaded: " date("m-d-y"fileatime("users/$username$viewurl/$filearray[$index]")); 
I would like to add
PHP Code:
<span class="text2"> and </span
to the above php code.

when i tried this combining span class and php
PHP Code:
echo "<span class=\"text2\">"uploaded". date("m-d-y", fileatime("users/$username$viewurl/$filearray[$index]"))</span>"
Im getting "Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'"

What should i do or how do i correct this?
thank you
pagedrop is offline   Reply With Quote
Old 07-17-2012, 07:47 AM   PM User | #2
low tech
Regular Coder

 
low tech's Avatar
 
Join Date: Dec 2009
Posts: 740
Thanks: 149
Thanked 67 Times in 67 Posts
low tech is on a distinguished road
Hi

try

PHP Code:
echo '<span class="text2">uploaded: ' date("m-d-y"fileatime("users/$username$viewurl/$filearray[$index]")) . '</span>'
LT
__________________
Ask not what can I do for myself, but what can I do for others

"The greatest revenge is to accomplish what others say you cannot do."
~ Unknown
low tech is offline   Reply With Quote
Users who have thanked low tech for this post:
pagedrop (07-17-2012)
Old 07-17-2012, 07:19 PM   PM User | #3
pagedrop
New Coder

 
Join Date: Oct 2005
Posts: 61
Thanks: 12
Thanked 0 Times in 0 Posts
pagedrop is an unknown quantity at this point
thank you. it worked.
pagedrop is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:40 PM.


Advertisement
Log in to turn off these ads.